@Deprecated public interface UdtChannel extends Channel
Channel
.
Supported UDT UdtChannel
are available via NioUdtProvider
.
Channel.Unsafe
Modifier and Type | Method and Description |
---|---|
UdtChannelConfig |
config()
Deprecated.
Returns the
UdtChannelConfig of the channel. |
java.net.InetSocketAddress |
localAddress()
Deprecated.
Returns the local address where this channel is bound to.
|
java.net.InetSocketAddress |
remoteAddress()
Deprecated.
Returns the remote address where this channel is connected to.
|
alloc, bind, bind, close, close, closeFuture, connect, connect, connect, connect, deregister, deregister, disconnect, disconnect, eventLoop, flush, isActive, isOpen, isRegistered, isWritable, metadata, newFailedFuture, newProgressivePromise, newPromise, newSucceededFuture, parent, pipeline, read, unsafe, voidPromise, write, write, writeAndFlush, writeAndFlush
attr
UdtChannelConfig config()
UdtChannelConfig
of the channel.java.net.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
null
if this channel is not bound.java.net.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
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
.Copyright © 2008–2018 The Netty Project. All rights reserved.