Modified the client state messages to include the chat
instance in case we add a multi-client test.
This commit is contained in:
parent
9e80d8a7aa
commit
38fe771ed8
@ -93,6 +93,8 @@ public class TestChatClient extends JFrame {
|
|||||||
client.addMessageListener(new ChatHandler(), ChatMessage.class);
|
client.addMessageListener(new ChatHandler(), ChatMessage.class);
|
||||||
client.addClientStateListener(new ChatClientStateListener());
|
client.addClientStateListener(new ChatClientStateListener());
|
||||||
client.start();
|
client.start();
|
||||||
|
|
||||||
|
System.out.println("Started client:" + client);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -158,12 +160,12 @@ public class TestChatClient extends JFrame {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void clientConnected(Client c) {
|
public void clientConnected(Client c) {
|
||||||
System.out.println("clientConnected()");
|
System.out.println("clientConnected(" + c + ")");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void clientDisconnected(Client c, DisconnectInfo info) {
|
public void clientDisconnected(Client c, DisconnectInfo info) {
|
||||||
System.out.println("clientDisconnected()");
|
System.out.println("clientDisconnected(" + c + ")");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user