use of com.jme3.network.kernel.Endpoint in project jmonkeyengine by jMonkeyEngine.
the class UdpEndpoint method close.
public void close(boolean flush) {
try {
kernel.closeEndpoint(this);
connected = false;
} catch (IOException e) {
throw new KernelException("Error closing endpoint for socket:" + socket, e);
}
}
Aggregations