Interface LocalServerChannel
- All Superinterfaces:
Channel, Comparable<Channel>, ServerChannel
- All Known Implementing Classes:
DefaultLocalServerChannel
A
ServerChannel for the local transport.-
Field Summary
Fields inherited from interface Channel
OP_NONE, OP_READ, OP_READ_WRITE, OP_WRITE -
Method Summary
Modifier and TypeMethodDescriptionReturns the local address where this channel is bound to.Returns the remote address where this channel is connected to.Methods inherited from interface Channel
bind, close, connect, disconnect, getAttachment, getCloseFuture, getConfig, getFactory, getId, getInterestOps, getParent, getPipeline, getUserDefinedWritability, isBound, isConnected, isOpen, isReadable, isWritable, setAttachment, setInterestOps, setReadable, setUserDefinedWritability, unbind, write, writeMethods inherited from interface Comparable
compareTo
-
Method Details
-
getLocalAddress
LocalAddress getLocalAddress()Description copied from interface:ChannelReturns the local address where this channel is bound to. The returnedSocketAddressis supposed to be down-cast into more concrete type such asInetSocketAddressto retrieve the detailed information.- Specified by:
getLocalAddressin interfaceChannel- Returns:
- the local address of this channel.
nullif this channel is not bound.
-
getRemoteAddress
LocalAddress getRemoteAddress()Description copied from interface:ChannelReturns the remote address where this channel is connected to. The returnedSocketAddressis supposed to be down-cast into more concrete type such asInetSocketAddressto retrieve the detailed information.- Specified by:
getRemoteAddressin interfaceChannel- Returns:
- the remote address of this channel.
nullif this channel is not connected. If this channel is not connected but it can receive messages from arbitrary remote addresses (e.g.DatagramChannel, useMessageEvent.getRemoteAddress()to determine the origination of the received message as this method will returnnull.
-