public interface SctpServerChannel extends ServerChannel
ServerChannel
which accepts incoming SCTP/IP associations.
Multi-homing address binding/unbinding can done through bindAddress/unbindAddress methods.
Channel.Unsafe
Modifier and Type | Method and Description |
---|---|
Set<InetSocketAddress> |
allLocalAddresses()
Return all local addresses of the SCTP server channel.
|
ChannelFuture |
bindAddress(InetAddress localAddress)
Bind a address to the already bound channel to enable multi-homing.
|
ChannelFuture |
bindAddress(InetAddress localAddress,
ChannelPromise promise)
Bind a address to the already bound channel to enable multi-homing.
|
SctpServerChannelConfig |
config()
Returns the
SctpServerChannelConfig configuration of the channel. |
InetSocketAddress |
localAddress()
Return the (primary) local address of the SCTP server channel.
|
ChannelFuture |
unbindAddress(InetAddress localAddress)
Unbind the address from channel's multi-homing address list.
|
ChannelFuture |
unbindAddress(InetAddress localAddress,
ChannelPromise promise)
Unbind the address from channel's multi-homing address list.
|
alloc, bytesBeforeUnwritable, bytesBeforeWritable, closeFuture, eventLoop, flush, id, isActive, isOpen, isRegistered, isWritable, metadata, parent, pipeline, read, remoteAddress, 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
SctpServerChannelConfig config()
SctpServerChannelConfig
configuration of the channel.InetSocketAddress localAddress()
localAddress
in interface Channel
null
if this channel is not bound.Set<InetSocketAddress> allLocalAddresses()
ChannelFuture bindAddress(InetAddress localAddress)
ChannelFuture bindAddress(InetAddress localAddress, ChannelPromise promise)
ChannelPromise
and return a ChannelFuture
ChannelFuture unbindAddress(InetAddress localAddress)
ChannelFuture unbindAddress(InetAddress localAddress, ChannelPromise promise)
ChannelPromise
and return a ChannelFuture
Copyright © 2008–2017 The Netty Project. All rights reserved.