Package io.netty.channel.unix
Interface DomainDatagramChannel
-
- All Superinterfaces:
io.netty.util.AttributeMap,io.netty.channel.Channel,io.netty.channel.ChannelOutboundInvoker,Comparable<io.netty.channel.Channel>,UnixChannel
public interface DomainDatagramChannel extends UnixChannel, io.netty.channel.Channel
AUnixChannelthat supports communication via UNIX domain datagram sockets.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DomainDatagramChannelConfigconfig()booleanisConnected()Returntrueif theDomainDatagramChannelis connected to the remote peer.DomainSocketAddresslocalAddress()DomainSocketAddressremoteAddress()-
Methods inherited from interface io.netty.channel.Channel
alloc, bind, bind, bytesBeforeUnwritable, bytesBeforeWritable, close, close, closeFuture, connect, connect, connect, connect, deregister, deregister, disconnect, disconnect, eventLoop, flush, getOption, id, isActive, isOpen, isRegistered, isWritable, metadata, newFailedFuture, newProgressivePromise, newPromise, newSucceededFuture, parent, pipeline, read, setOption, unsafe, voidPromise, write, write, writeAndFlush, writeAndFlush
-
Methods inherited from interface java.lang.Comparable
compareTo
-
Methods inherited from interface io.netty.channel.unix.UnixChannel
fd
-
-
-
-
Method Detail
-
config
DomainDatagramChannelConfig config()
- Specified by:
configin interfaceio.netty.channel.Channel
-
isConnected
boolean isConnected()
Returntrueif theDomainDatagramChannelis connected to the remote peer.
-
localAddress
DomainSocketAddress localAddress()
- Specified by:
localAddressin interfaceio.netty.channel.Channel
-
remoteAddress
DomainSocketAddress remoteAddress()
- Specified by:
remoteAddressin interfaceio.netty.channel.Channel
-
-