public interface DatagramChannel extends Channel
Channel
.Channel.Unsafe
Modifier and Type | Method and Description |
---|---|
ChannelFuture |
block(InetAddress multicastAddress,
InetAddress sourceToBlock)
Block the given sourceToBlock address for the given multicastAddress and notifies the
ChannelFuture once
the operation completes. |
ChannelFuture |
block(InetAddress multicastAddress,
InetAddress sourceToBlock,
ChannelPromise future)
Block the given sourceToBlock address for the given multicastAddress and notifies the
ChannelFuture once
the operation completes. |
ChannelFuture |
block(InetAddress multicastAddress,
NetworkInterface networkInterface,
InetAddress sourceToBlock)
Block the given sourceToBlock address for the given multicastAddress on the given networkInterface and notifies
the
ChannelFuture once the operation completes. |
ChannelFuture |
block(InetAddress multicastAddress,
NetworkInterface networkInterface,
InetAddress sourceToBlock,
ChannelPromise future)
Block the given sourceToBlock address for the given multicastAddress on the given networkInterface and notifies
the
ChannelFuture once the operation completes. |
DatagramChannelConfig |
config()
Returns the configuration of this channel.
|
boolean |
isConnected()
Return
true if the DatagramChannel is connected to the remote peer. |
ChannelFuture |
joinGroup(InetAddress multicastAddress)
Joins a multicast group and notifies the
ChannelFuture once the operation completes. |
ChannelFuture |
joinGroup(InetAddress multicastAddress,
ChannelPromise future)
Joins a multicast group and notifies the
ChannelFuture once the operation completes. |
ChannelFuture |
joinGroup(InetAddress multicastAddress,
NetworkInterface networkInterface,
InetAddress source)
Joins the specified multicast group at the specified interface and notifies the
ChannelFuture
once the operation completes. |
ChannelFuture |
joinGroup(InetAddress multicastAddress,
NetworkInterface networkInterface,
InetAddress source,
ChannelPromise future)
Joins the specified multicast group at the specified interface and notifies the
ChannelFuture
once the operation completes. |
ChannelFuture |
joinGroup(InetSocketAddress multicastAddress,
NetworkInterface networkInterface)
Joins the specified multicast group at the specified interface and notifies the
ChannelFuture
once the operation completes. |
ChannelFuture |
joinGroup(InetSocketAddress multicastAddress,
NetworkInterface networkInterface,
ChannelPromise future)
Joins the specified multicast group at the specified interface and notifies the
ChannelFuture
once the operation completes. |
ChannelFuture |
leaveGroup(InetAddress multicastAddress)
Leaves a multicast group and notifies the
ChannelFuture once the operation completes. |
ChannelFuture |
leaveGroup(InetAddress multicastAddress,
ChannelPromise future)
Leaves a multicast group and notifies the
ChannelFuture once the operation completes. |
ChannelFuture |
leaveGroup(InetAddress multicastAddress,
NetworkInterface networkInterface,
InetAddress source)
Leave the specified multicast group at the specified interface using the specified source and notifies
the
ChannelFuture once the operation completes. |
ChannelFuture |
leaveGroup(InetAddress multicastAddress,
NetworkInterface networkInterface,
InetAddress source,
ChannelPromise future)
Leave the specified multicast group at the specified interface using the specified source and notifies
the
ChannelFuture once the operation completes. |
ChannelFuture |
leaveGroup(InetSocketAddress multicastAddress,
NetworkInterface networkInterface)
Leaves a multicast group on a specified local interface and notifies the
ChannelFuture once the
operation completes. |
ChannelFuture |
leaveGroup(InetSocketAddress multicastAddress,
NetworkInterface networkInterface,
ChannelPromise future)
Leaves a multicast group on a specified local interface and notifies the
ChannelFuture once the
operation completes. |
InetSocketAddress |
localAddress()
Returns the local address where this channel is bound to.
|
InetSocketAddress |
remoteAddress()
Returns the remote address where this channel is connected to.
|
alloc, bytesBeforeUnwritable, bytesBeforeWritable, closeFuture, eventLoop, flush, id, isActive, isOpen, isRegistered, isWritable, metadata, parent, pipeline, read, 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
DatagramChannelConfig config()
Channel
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.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
.boolean isConnected()
true
if the DatagramChannel
is connected to the remote peer.ChannelFuture joinGroup(InetAddress multicastAddress)
ChannelFuture
once the operation completes.ChannelFuture joinGroup(InetAddress multicastAddress, ChannelPromise future)
ChannelFuture
once the operation completes.
The given ChannelFuture
will be notified and also returned.ChannelFuture joinGroup(InetSocketAddress multicastAddress, NetworkInterface networkInterface)
ChannelFuture
once the operation completes.ChannelFuture joinGroup(InetSocketAddress multicastAddress, NetworkInterface networkInterface, ChannelPromise future)
ChannelFuture
once the operation completes.
The given ChannelFuture
will be notified and also returned.ChannelFuture joinGroup(InetAddress multicastAddress, NetworkInterface networkInterface, InetAddress source)
ChannelFuture
once the operation completes.ChannelFuture joinGroup(InetAddress multicastAddress, NetworkInterface networkInterface, InetAddress source, ChannelPromise future)
ChannelFuture
once the operation completes.
The given ChannelFuture
will be notified and also returned.ChannelFuture leaveGroup(InetAddress multicastAddress)
ChannelFuture
once the operation completes.ChannelFuture leaveGroup(InetAddress multicastAddress, ChannelPromise future)
ChannelFuture
once the operation completes.
The given ChannelFuture
will be notified and also returned.ChannelFuture leaveGroup(InetSocketAddress multicastAddress, NetworkInterface networkInterface)
ChannelFuture
once the
operation completes.ChannelFuture leaveGroup(InetSocketAddress multicastAddress, NetworkInterface networkInterface, ChannelPromise future)
ChannelFuture
once the
operation completes.
The given ChannelFuture
will be notified and also returned.ChannelFuture leaveGroup(InetAddress multicastAddress, NetworkInterface networkInterface, InetAddress source)
ChannelFuture
once the operation completes.ChannelFuture leaveGroup(InetAddress multicastAddress, NetworkInterface networkInterface, InetAddress source, ChannelPromise future)
ChannelFuture
once the operation completes.
The given ChannelFuture
will be notified and also returned.ChannelFuture block(InetAddress multicastAddress, NetworkInterface networkInterface, InetAddress sourceToBlock)
ChannelFuture
once the operation completes.
The given ChannelFuture
will be notified and also returned.ChannelFuture block(InetAddress multicastAddress, NetworkInterface networkInterface, InetAddress sourceToBlock, ChannelPromise future)
ChannelFuture
once the operation completes.
The given ChannelFuture
will be notified and also returned.ChannelFuture block(InetAddress multicastAddress, InetAddress sourceToBlock)
ChannelFuture
once
the operation completes.
The given ChannelFuture
will be notified and also returned.ChannelFuture block(InetAddress multicastAddress, InetAddress sourceToBlock, ChannelPromise future)
ChannelFuture
once
the operation completes.
The given ChannelFuture
will be notified and also returned.Copyright © 2008–2017 The Netty Project. All rights reserved.