1 /************************************************************
2 * Copyright *
3 * Portions of this software are Copyright (c) 1993 - 2002, *
4 * Chad Z. Hower (Kudzu) and the Indy Pit Crew *
5 * - http://www.nevrona.com/Indy/ *
6 ************************************************************/
7 package org.indy;
8
9 /***
10 * Description of the Interface
11 *
12 *@author owen
13 */
14 public interface ConnectionInterceptListener {
15 /***
16 * Description of the Method
17 *
18 *@param sender Description of the Parameter
19 */
20 public void onConnect(ConnectionIntercept sender);
21
22 /***
23 * Description of the Method
24 *
25 *@param sender Description of the Parameter
26 */
27 public void onDisconnect(ConnectionIntercept sender);
28
29 /***
30 * Description of the Method
31 *
32 *@param sender Description of the Parameter
33 *@param b Description of the Parameter
34 */
35 public void onRead(ConnectionIntercept sender, byte[] b);
36
37 /***
38 * Description of the Method
39 *
40 *@param sender Description of the Parameter
41 *@param b Description of the Parameter
42 */
43 public void onWrite(ConnectionIntercept sender, byte[] b);
44 }
This page was automatically generated by Maven