Package | Description |
---|---|
naga |
The main Naga classes.
|
naga.examples |
Various examples on how to use Naga.
|
Modifier and Type | Interface | Description |
---|---|---|
interface |
NIOSocketSSL |
Interface for a SSL Socket
|
Modifier and Type | Method | Description |
---|---|---|
NIOSocket |
NIOService.openSocket(java.lang.String host,
int port) |
Open a normal socket to the host on the given port returning
a NIOSocket.
|
NIOSocket |
NIOService.openSocket(java.net.InetAddress inetAddress,
int port) |
Open a normal socket to the host on the given port returning
a NIOSocket.
|
NIOSocket |
NIOService.openSSLSocket(javax.net.ssl.SSLEngine sslEngine,
java.lang.String host,
int port) |
Open a socket to the host on the given port returning
a NIOSocketSSL.
|
Modifier and Type | Method | Description |
---|---|---|
void |
SocketObserver.connectionBroken(NIOSocket nioSocket,
java.lang.Exception exception) |
Called by the NIOService on the NIO thread when a connection is disconnected.
|
void |
SocketObserverAdapter.connectionBroken(NIOSocket nioSocket,
java.lang.Exception exception) |
|
void |
SocketObserver.connectionOpened(NIOSocket nioSocket) |
Called by the NIOService on the NIO thread when a connection completes on a socket.
|
void |
SocketObserverAdapter.connectionOpened(NIOSocket nioSocket) |
|
void |
ServerSocketObserver.newConnection(NIOSocket nioSocket) |
Called by the NIOService on the NIO thread when a new connection has been accepted by the socket.
|
void |
ServerSocketObserverAdapter.newConnection(NIOSocket nioSocket) |
|
void |
SocketObserver.packetReceived(NIOSocket socket,
byte[] packet) |
Called by the NIOService on the NIO thread when a packet is finished reading.
|
void |
SocketObserverAdapter.packetReceived(NIOSocket socket,
byte[] packet) |
|
void |
SocketObserver.packetSent(NIOSocket socket,
java.lang.Object tag) |
Called by the NIOService on the NIO thread when a packet has finished writing.
|
void |
SocketObserverAdapter.packetSent(NIOSocket socket,
java.lang.Object tag) |
Constructor | Description |
---|---|
SSLPacketHandler(javax.net.ssl.SSLEngine engine,
NIOSocket socket,
naga.SSLSocketChannelResponder responder) |
Modifier and Type | Method | Description |
---|---|---|
void |
ChatServer.newConnection(NIOSocket nioSocket) |