NioSctpServerChannel
.@Deprecated public class OioSctpServerChannel extends AbstractOioMessageChannel implements SctpServerChannel
SctpServerChannel
implementation which use blocking mode to accept new
connections and create the OioSctpChannel
for them.
Be aware that not all operations systems support SCTP. Please refer to the documentation of your operation system,
to understand what you need to do to use it. Also this feature is only supported on Java 7+.AbstractChannel.AbstractUnsafe
Channel.Unsafe
SO_TIMEOUT
Constructor and Description |
---|
OioSctpServerChannel()
Deprecated.
Create a new instance with an new
SctpServerChannel |
OioSctpServerChannel(com.sun.nio.sctp.SctpServerChannel sch)
Deprecated.
Create a new instance from the given
SctpServerChannel |
Modifier and Type | Method and Description |
---|---|
Set<InetSocketAddress> |
allLocalAddresses()
Deprecated.
Return all local addresses of the SCTP server channel.
|
ChannelFuture |
bindAddress(InetAddress localAddress)
Deprecated.
Bind a address to the already bound channel to enable multi-homing.
|
ChannelFuture |
bindAddress(InetAddress localAddress,
ChannelPromise promise)
Deprecated.
Bind a address to the already bound channel to enable multi-homing.
|
SctpServerChannelConfig |
config()
Deprecated.
Returns the
SctpServerChannelConfig configuration of the channel. |
protected void |
doBind(SocketAddress localAddress)
Deprecated.
Bind the
Channel to the SocketAddress |
protected void |
doClose()
Deprecated.
Close the
Channel |
protected void |
doConnect(SocketAddress remoteAddress,
SocketAddress localAddress)
Deprecated.
Connect to the remote peer using the given localAddress if one is specified or
null otherwise. |
protected void |
doDisconnect()
Deprecated.
Disconnect this
Channel from its remote peer |
protected int |
doReadMessages(List<Object> buf)
Deprecated.
Read messages into the given array and return the amount which was read.
|
protected void |
doWrite(ChannelOutboundBuffer in)
Deprecated.
Flush the content of the given buffer to the remote peer.
|
protected Object |
filterOutboundMessage(Object msg)
Deprecated.
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()
Deprecated.
Return
true if the Channel is active and so connected. |
boolean |
isOpen()
Deprecated.
Returns
true if the Channel is open and may get active later |
InetSocketAddress |
localAddress()
Deprecated.
Returns the local address where this channel is bound to.
|
protected SocketAddress |
localAddress0()
Deprecated.
Returns the
SocketAddress which is bound locally. |
ChannelMetadata |
metadata()
Deprecated.
|
InetSocketAddress |
remoteAddress()
Deprecated.
Returns the remote address where this channel is connected to.
|
protected SocketAddress |
remoteAddress0()
Deprecated.
Return the
SocketAddress which the Channel is connected to. |
ChannelFuture |
unbindAddress(InetAddress localAddress)
Deprecated.
Unbind the address from channel's multi-homing address list.
|
ChannelFuture |
unbindAddress(InetAddress localAddress,
ChannelPromise promise)
Deprecated.
Unbind the address from channel's multi-homing address list.
|
doRead
clearReadPending, doBeginRead, isCompatible, isReadPending, newUnsafe, setReadPending
alloc, bind, bind, bytesBeforeUnwritable, bytesBeforeWritable, close, close, closeFuture, compareTo, connect, connect, connect, connect, deregister, deregister, disconnect, disconnect, doDeregister, doRegister, doShutdownOutput, equals, eventLoop, flush, hashCode, id, invalidateLocalAddress, invalidateRemoteAddress, isRegistered, isWritable, maxMessagesPerWrite, newChannelPipeline, newFailedFuture, newId, newProgressivePromise, newPromise, newSucceededFuture, parent, pipeline, read, toString, unsafe, validateFileRegion, voidPromise, write, write, writeAndFlush, writeAndFlush
attr, hasAttr
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
alloc, bytesBeforeUnwritable, bytesBeforeWritable, closeFuture, eventLoop, flush, id, 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 OioSctpServerChannel()
SctpServerChannel
public OioSctpServerChannel(com.sun.nio.sctp.SctpServerChannel sch)
SctpServerChannel
sch
- the SctpServerChannel
which is used by this instancepublic ChannelMetadata metadata()
Channel
public SctpServerChannelConfig config()
SctpServerChannel
SctpServerChannelConfig
configuration of the channel.config
in interface Channel
config
in interface SctpServerChannel
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 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
.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 SctpServerChannel
localAddress
in class AbstractChannel
null
if this channel is not bound.public boolean isOpen()
Channel
true
if the Channel
is open and may get active laterprotected SocketAddress localAddress0()
AbstractChannel
SocketAddress
which is bound locally.localAddress0
in class AbstractChannel
public Set<InetSocketAddress> allLocalAddresses()
SctpServerChannel
allLocalAddresses
in interface SctpServerChannel
public boolean isActive()
Channel
true
if the Channel
is active and so connected.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 AbstractChannel
Exception
protected int doReadMessages(List<Object> buf) throws Exception
AbstractOioMessageChannel
doReadMessages
in class AbstractOioMessageChannel
Exception
public ChannelFuture bindAddress(InetAddress localAddress)
SctpServerChannel
bindAddress
in interface SctpServerChannel
public ChannelFuture bindAddress(InetAddress localAddress, ChannelPromise promise)
SctpServerChannel
ChannelPromise
and return a ChannelFuture
bindAddress
in interface SctpServerChannel
public ChannelFuture unbindAddress(InetAddress localAddress)
SctpServerChannel
unbindAddress
in interface SctpServerChannel
public ChannelFuture unbindAddress(InetAddress localAddress, ChannelPromise promise)
SctpServerChannel
ChannelPromise
and return a ChannelFuture
unbindAddress
in interface SctpServerChannel
protected void doConnect(SocketAddress remoteAddress, SocketAddress localAddress) throws Exception
AbstractOioChannel
null
otherwise.doConnect
in class AbstractOioChannel
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 void doWrite(ChannelOutboundBuffer in) throws Exception
AbstractChannel
doWrite
in class AbstractChannel
Exception
protected 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
Copyright © 2008–2024 The Netty Project. All rights reserved.