|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface DatagramChannel
A UDP/IP Channel
which is created by DatagramChannelFactory
.
Field Summary |
---|
Fields inherited from interface org.jboss.netty.channel.Channel |
---|
OP_NONE, OP_READ, OP_READ_WRITE, OP_WRITE |
Method Summary | |
---|---|
DatagramChannelConfig |
getConfig()
Returns the configuration of this channel. |
InetSocketAddress |
getLocalAddress()
Returns the local address where this channel is bound to. |
InetSocketAddress |
getRemoteAddress()
Returns the remote address where this channel is connected to. |
void |
joinGroup(InetAddress multicastAddress)
Joins a multicast group. |
void |
joinGroup(InetSocketAddress multicastAddress,
NetworkInterface networkInterface)
Joins the specified multicast group at the specified interface. |
void |
leaveGroup(InetAddress multicastAddress)
Leaves a multicast group. |
void |
leaveGroup(InetSocketAddress multicastAddress,
NetworkInterface networkInterface)
Leaves a multicast group on a specified local interface. |
Methods inherited from interface org.jboss.netty.channel.Channel |
---|
bind, close, connect, disconnect, getCloseFuture, getFactory, getId, getInterestOps, getParent, getPipeline, isBound, isConnected, isOpen, isReadable, isWritable, setInterestOps, setReadable, unbind, write, write |
Methods inherited from interface java.lang.Comparable |
---|
compareTo |
Method Detail |
---|
DatagramChannelConfig getConfig()
Channel
getConfig
in interface Channel
InetSocketAddress getLocalAddress()
Channel
SocketAddress
is supposed to be down-cast into more concrete
type such as InetSocketAddress
to retrieve the detailed
information.
getLocalAddress
in interface Channel
null
if this channel is not bound.InetSocketAddress getRemoteAddress()
Channel
SocketAddress
is supposed to be down-cast into more
concrete type such as InetSocketAddress
to retrieve the detailed
information.
getRemoteAddress
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 MessageEvent.getRemoteAddress()
to determine
the origination of the received message as this method will
return null
.void joinGroup(InetAddress multicastAddress)
void joinGroup(InetSocketAddress multicastAddress, NetworkInterface networkInterface)
void leaveGroup(InetAddress multicastAddress)
void leaveGroup(InetSocketAddress multicastAddress, NetworkInterface networkInterface)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |