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

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