Modifier and Type | Method and Description |
---|---|
void |
Server.disconnectClient(RemoteAddress clientAddress)
This method is used to disconnect a specific client.
|
void |
Server.sendTo(RemoteAddress address,
byte data)
This method sends data to a specified client identified by its
RemoteAddress.
|
void |
Server.sendTo(RemoteAddress address,
byte[] data)
This method sends data to a specified client identified by its
RemoteAddress.
|
void |
ObjectServer.sendTo(RemoteAddress address,
byte[] data) |
void |
Server.sendTo(RemoteAddress address,
double data)
This method sends data to a specified client identified by its
RemoteAddress.
|
void |
Server.sendTo(RemoteAddress address,
int data)
This method sends data to a specified client identified by its
RemoteAddress.
|
void |
Server.sendTo(RemoteAddress address,
java.lang.String data)
This method sends data to a specified client identified by its
RemoteAddress.
|