public class NioServerSocketChannel extends AbstractNioMessageChannel implements ServerSocketChannel
ServerSocketChannel
implementation which uses
NIO selector based implementation to accept new connections.AbstractNioChannel.AbstractNioUnsafe, AbstractNioChannel.NioUnsafe
AbstractChannel.AbstractUnsafe
Channel.Unsafe
readInterestOp
Constructor and Description |
---|
NioServerSocketChannel()
Create a new instance
|
NioServerSocketChannel(SelectorProvider provider)
Create a new instance using the given
SelectorProvider . |
NioServerSocketChannel(SelectorProvider provider,
InternetProtocolFamily family)
Create a new instance using the given
SelectorProvider and protocol family (supported only since JDK 15). |
NioServerSocketChannel(ServerSocketChannel channel)
Create a new instance using the given
ServerSocketChannel . |
Modifier and Type | Method and Description |
---|---|
protected boolean |
closeOnReadError(Throwable cause) |
ServerSocketChannelConfig |
config()
Returns the configuration of this channel.
|
protected void |
doBind(SocketAddress localAddress)
Bind the
Channel to the SocketAddress |
protected void |
doClose()
Close the
Channel |
protected boolean |
doConnect(SocketAddress remoteAddress,
SocketAddress localAddress)
Connect to the remote peer
|
protected void |
doDisconnect()
Disconnect this
Channel from its remote peer |
protected void |
doFinishConnect()
Finish the connect
|
protected int |
doReadMessages(List<Object> buf)
Read messages into the given array and return the amount which was read.
|
protected boolean |
doWriteMessage(Object msg,
ChannelOutboundBuffer in)
Write a message to the underlying
Channel . |
protected Object |
filterOutboundMessage(Object msg)
Invoked when a new message is added to a
ChannelOutboundBuffer of this AbstractChannel , so that
the Channel implementation converts the message to another. |
boolean |
isActive()
Return
true if the Channel is active and so connected. |
protected ServerSocketChannel |
javaChannel() |
InetSocketAddress |
localAddress()
Returns the local address where this channel is bound to.
|
protected SocketAddress |
localAddress0()
Returns the
SocketAddress which is bound locally. |
ChannelMetadata |
metadata()
|
InetSocketAddress |
remoteAddress()
Returns the remote address where this channel is connected to.
|
protected SocketAddress |
remoteAddress0()
Return the
SocketAddress which the Channel is connected to. |
continueOnWriteError, continueReading, doBeginRead, doWrite, newUnsafe
clearReadPending, doDeregister, doRegister, eventLoop, isCompatible, isOpen, isReadPending, newDirectBuffer, newDirectBuffer, selectionKey, setReadPending, unsafe
alloc, bind, bind, bytesBeforeUnwritable, bytesBeforeWritable, close, close, closeFuture, compareTo, connect, connect, connect, connect, deregister, deregister, disconnect, disconnect, doShutdownOutput, equals, flush, hashCode, id, invalidateLocalAddress, invalidateRemoteAddress, isRegistered, isWritable, maxMessagesPerWrite, newChannelPipeline, newFailedFuture, newId, newProgressivePromise, newPromise, newSucceededFuture, parent, pipeline, read, toString, validateFileRegion, voidPromise, write, write, writeAndFlush, writeAndFlush
attr, hasAttr
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
alloc, bytesBeforeUnwritable, bytesBeforeWritable, closeFuture, eventLoop, flush, id, isOpen, isRegistered, isWritable, parent, pipeline, read, unsafe
attr, hasAttr
bind, bind, close, close, connect, connect, connect, connect, deregister, deregister, disconnect, disconnect, newFailedFuture, newProgressivePromise, newPromise, newSucceededFuture, voidPromise, write, write, writeAndFlush, writeAndFlush
compareTo
public NioServerSocketChannel()
public NioServerSocketChannel(SelectorProvider provider)
SelectorProvider
.public NioServerSocketChannel(SelectorProvider provider, InternetProtocolFamily family)
SelectorProvider
and protocol family (supported only since JDK 15).public NioServerSocketChannel(ServerSocketChannel channel)
ServerSocketChannel
.public InetSocketAddress localAddress()
Channel
SocketAddress
is supposed to be down-cast into more concrete
type such as InetSocketAddress
to retrieve the detailed
information.localAddress
in interface Channel
localAddress
in interface ServerSocketChannel
localAddress
in class AbstractChannel
null
if this channel is not bound.public ChannelMetadata metadata()
Channel
public ServerSocketChannelConfig config()
Channel
config
in interface Channel
config
in interface ServerSocketChannel
public boolean isActive()
Channel
true
if the Channel
is active and so connected.public InetSocketAddress remoteAddress()
Channel
SocketAddress
is supposed to be down-cast into more
concrete type such as InetSocketAddress
to retrieve the detailed
information.remoteAddress
in interface Channel
remoteAddress
in interface ServerSocketChannel
remoteAddress
in class AbstractChannel
null
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 DefaultAddressedEnvelope.recipient()
to determine
the origination of the received message as this method will
return null
.protected ServerSocketChannel javaChannel()
javaChannel
in class AbstractNioChannel
protected SocketAddress localAddress0()
AbstractChannel
SocketAddress
which is bound locally.localAddress0
in class AbstractChannel
protected void doBind(SocketAddress localAddress) throws Exception
AbstractChannel
Channel
to the SocketAddress
doBind
in class AbstractChannel
Exception
protected void doClose() throws Exception
AbstractChannel
Channel
doClose
in class AbstractNioChannel
Exception
protected int doReadMessages(List<Object> buf) throws Exception
AbstractNioMessageChannel
doReadMessages
in class AbstractNioMessageChannel
Exception
protected boolean doConnect(SocketAddress remoteAddress, SocketAddress localAddress) throws Exception
AbstractNioChannel
doConnect
in class AbstractNioChannel
Exception
protected void doFinishConnect() throws Exception
AbstractNioChannel
doFinishConnect
in class AbstractNioChannel
Exception
protected SocketAddress remoteAddress0()
AbstractChannel
SocketAddress
which the Channel
is connected to.remoteAddress0
in class AbstractChannel
protected void doDisconnect() throws Exception
AbstractChannel
Channel
from its remote peerdoDisconnect
in class AbstractChannel
Exception
protected boolean doWriteMessage(Object msg, ChannelOutboundBuffer in) throws Exception
AbstractNioMessageChannel
Channel
.doWriteMessage
in class AbstractNioMessageChannel
true
if and only if the message has been writtenException
protected final Object filterOutboundMessage(Object msg) throws Exception
AbstractChannel
ChannelOutboundBuffer
of this AbstractChannel
, so that
the Channel
implementation converts the message to another. (e.g. heap buffer -> direct buffer)filterOutboundMessage
in class AbstractChannel
Exception
protected boolean closeOnReadError(Throwable cause)
closeOnReadError
in class AbstractNioMessageChannel
Copyright © 2008–2024 The Netty Project. All rights reserved.