@Deprecated public class RxtxChannel extends OioByteStreamChannel
AbstractChannel.AbstractUnsafe
Channel.Unsafe
SO_TIMEOUT
Constructor and Description |
---|
RxtxChannel()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
RxtxChannelConfig |
config()
Deprecated.
Returns the configuration of this channel.
|
protected void |
doBind(java.net.SocketAddress localAddress)
Deprecated.
Bind the
Channel to the SocketAddress |
protected void |
doClose()
Deprecated.
Close the
Channel |
protected void |
doConnect(java.net.SocketAddress remoteAddress,
java.net.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 void |
doInit()
Deprecated.
|
boolean |
isOpen()
Deprecated.
Returns
true if the Channel is open and may get active later |
RxtxDeviceAddress |
localAddress()
Deprecated.
Returns the local address where this channel is bound to.
|
protected RxtxDeviceAddress |
localAddress0()
Deprecated.
Returns the
SocketAddress which is bound locally. |
protected AbstractChannel.AbstractUnsafe |
newUnsafe()
Deprecated.
Create a new
AbstractChannel.AbstractUnsafe instance which will be used for the life-time of the Channel |
RxtxDeviceAddress |
remoteAddress()
Deprecated.
Returns the remote address where this channel is connected to.
|
protected RxtxDeviceAddress |
remoteAddress0()
Deprecated.
Return the
SocketAddress which the Channel is connected to. |
activate, available, doReadBytes, doWriteBytes, doWriteFileRegion, isActive
checkInputShutdown, doRead, doWrite, filterOutboundMessage, isInputShutdown, metadata
doBeginRead, isCompatible, isReadPending, setReadPending
alloc, bind, bind, close, close, closeFuture, compareTo, connect, connect, connect, connect, deregister, deregister, disconnect, disconnect, doDeregister, doRegister, doShutdownOutput, equals, eventLoop, flush, hashCode, invalidateLocalAddress, invalidateRemoteAddress, isRegistered, isWritable, newChannelPipeline, newFailedFuture, newProgressivePromise, newPromise, newSucceededFuture, parent, pipeline, read, toString, unsafe, voidPromise, write, write, writeAndFlush, writeAndFlush
attr
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
attr
public RxtxChannelConfig config()
Channel
public boolean isOpen()
Channel
true
if the Channel
is open and may get active laterprotected AbstractChannel.AbstractUnsafe newUnsafe()
AbstractChannel
AbstractChannel.AbstractUnsafe
instance which will be used for the life-time of the Channel
newUnsafe
in class AbstractOioChannel
protected void doConnect(java.net.SocketAddress remoteAddress, java.net.SocketAddress localAddress) throws java.lang.Exception
AbstractOioChannel
null
otherwise.doConnect
in class AbstractOioChannel
java.lang.Exception
protected void doInit() throws java.lang.Exception
java.lang.Exception
public RxtxDeviceAddress 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 class AbstractChannel
null
if this channel is not bound.public RxtxDeviceAddress 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
.protected RxtxDeviceAddress localAddress0()
AbstractChannel
SocketAddress
which is bound locally.localAddress0
in class AbstractChannel
protected RxtxDeviceAddress remoteAddress0()
AbstractChannel
SocketAddress
which the Channel
is connected to.remoteAddress0
in class AbstractChannel
protected void doBind(java.net.SocketAddress localAddress) throws java.lang.Exception
AbstractChannel
Channel
to the SocketAddress
doBind
in class AbstractChannel
java.lang.Exception
protected void doDisconnect() throws java.lang.Exception
AbstractChannel
Channel
from its remote peerdoDisconnect
in class AbstractChannel
java.lang.Exception
protected void doClose() throws java.lang.Exception
AbstractChannel
Channel
doClose
in class OioByteStreamChannel
java.lang.Exception
Copyright © 2008–2018 The Netty Project. All rights reserved.