public interface INewClientSocketListener
Any object that wishes to be notified of a new client socket being created
from a SocketAcceptorThread
should implement this interface and add itself
via SocketAcceptorThread.addNewConnectionListener(INewClientSocketListener)
Modifier and Type | Method and Description |
---|---|
void |
notifyNewClientSocket(Socket newSocket)
Method called when a new client socket is accepted (via
ServerSocket.accept() ). |
void notifyNewClientSocket(Socket newSocket)
ServerSocket.accept()
).newSocket
- The new socket object createdCopyright © 2017. All rights reserved.