Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ enum Status {
/**
* Returns event handler associated with the session.
*
* @return the event handler, or {@code null} if no handler is associated with the session.
* @since 5.0
*/
IOEventHandler getHandler();
Expand Down Expand Up @@ -106,6 +107,7 @@ enum Status {
/**
* Removes first {@link Command} from the command queue if available.
*
* @return the first command, or {@code null} if the queue is empty.
* @since 5.0
*/
Command poll();
Expand All @@ -120,14 +122,14 @@ enum Status {
/**
* Returns address of the remote peer.
*
* @return socket address.
* @return socket address, or {@code null} if unavailable.
*/
SocketAddress getRemoteAddress();

/**
* Returns local address.
*
* @return socket address.
* @return socket address, or {@code null} if unavailable.
*/
SocketAddress getLocalAddress();

Expand Down
Loading