public interface LocalServerChannel extends ServerChannel
ServerChannel for the local transport.OP_NONE, OP_READ, OP_READ_WRITE, OP_WRITE| 限定符和类型 | 方法和说明 |
|---|---|
LocalAddress |
getLocalAddress()
Returns the local address where this channel is bound to.
|
LocalAddress |
getRemoteAddress()
Returns the remote address where this channel is connected to.
|
bind, close, connect, disconnect, getAttachment, getCloseFuture, getConfig, getFactory, getId, getInterestOps, getParent, getPipeline, getUserDefinedWritability, isBound, isConnected, isOpen, isReadable, isWritable, setAttachment, setInterestOps, setReadable, setUserDefinedWritability, unbind, write, writeLocalAddress getLocalAddress()
ChannelSocketAddress is supposed to be down-cast into more concrete
type such as InetSocketAddress to retrieve the detailed
information.getLocalAddress 在接口中 Channelnull if this channel is not bound.LocalAddress getRemoteAddress()
ChannelSocketAddress is supposed to be down-cast into more
concrete type such as InetSocketAddress to retrieve the detailed
information.getRemoteAddress 在接口中 Channelnull if this channel is not connected.
If this channel is not connected but it can receive messages
from arbitrary remote addresses (e.g. DatagramChannel,
use MessageEvent.getRemoteAddress() to determine
the origination of the received message as this method will
return null.