public interface ServerDomainSocketChannel extends ServerChannel, UnixChannel
Channel.Unsafe| Modifier and Type | Method and Description | 
|---|---|
| DomainSocketAddress | localAddress()Returns the local address where this channel is bound to. | 
| DomainSocketAddress | remoteAddress()Returns the remote address where this channel is connected to. | 
fdalloc, bind, bind, close, close, closeFuture, config, connect, connect, connect, connect, deregister, deregister, disconnect, disconnect, eventLoop, flush, id, isActive, isOpen, isRegistered, isWritable, metadata, newFailedFuture, newProgressivePromise, newPromise, newSucceededFuture, parent, pipeline, read, unsafe, voidPromise, write, write, writeAndFlush, writeAndFlushattr, hasAttrcompareToDomainSocketAddress remoteAddress()
ChannelSocketAddress is supposed to be down-cast into more
 concrete type such as InetSocketAddress to retrieve the detailed
 information.remoteAddress in interface Channelnull 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.DomainSocketAddress localAddress()
ChannelSocketAddress is supposed to be down-cast into more concrete
 type such as InetSocketAddress to retrieve the detailed
 information.localAddress in interface Channelnull if this channel is not bound.Copyright © 2008–2015 The Netty Project. All rights reserved.