|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IvyApplicationListener
this interface specifies the methods of an ApplicationListener
Method Summary | |
---|---|
void |
connect(IvyClient client)
invoked when a Ivy Client has joined the bus |
void |
die(IvyClient client,
int id,
java.lang.String msgarg)
invoked when a peer request us to leave the bus |
void |
directMessage(IvyClient client,
int id,
java.lang.String msgarg)
invoked when a peer sends us a direct message |
void |
disconnect(IvyClient client)
invoked when a Ivy Client has left the bus |
Method Detail |
---|
void connect(IvyClient client)
client
- the peervoid disconnect(IvyClient client)
client
- the peervoid die(IvyClient client, int id, java.lang.String msgarg)
client
- the peervoid directMessage(IvyClient client, int id, java.lang.String msgarg)
client
- the peerid
- msgarg
- the message itself
there is no need to use a bus close() or stop() operation within a die()
method, it will be called automatically. Furthermore, it is considered
poor style to enforce the end of a program with System.exit(), you should
consider terminating all threads ( AWT, etc )
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |