source: trunk/autoquest-htmlmonitor/src/main/java/de/ugoe/cs/autoquest/htmlmonitor/HtmlMonitorMessageListener.java @ 872

Last change on this file since 872 was 872, checked in by pharms, 12 years ago
  • removed find bug warnings
File size: 748 bytes
Line 
1package de.ugoe.cs.autoquest.htmlmonitor;
2
3import java.io.Serializable;
4
5/**
6 * <p>
7 * a message listener to be registered with the {@link HtmlMonitorServer} for being called for
8 * new messages send by clients.
9 * </p>
10 *
11 * @author Patrick Harms
12 */
13public interface HtmlMonitorMessageListener extends Serializable {
14
15    /**
16     * <p>
17     * called for new messages received from a client. The client is described through the
18     * <code>clientInfos</code>. The events are several events that were recorded at client side.
19     * </p>
20     *
21     * @param clientInfos infos about the client that send the events
22     * @param events      the received events
23     */
24    void handleMessage(HtmlClientInfos clientInfos, HtmlEvent[] events);
25
26}
Note: See TracBrowser for help on using the repository browser.