Package org.jboss.netty.channel.socket
Interface DatagramChannel
-
- All Known Implementing Classes:
NioDatagramChannel,OioDatagramChannel
public interface DatagramChannel extends Channel
A UDP/IPChannelwhich is created byDatagramChannelFactory.
-
-
Field Summary
-
Fields inherited from interface org.jboss.netty.channel.Channel
OP_NONE, OP_READ, OP_READ_WRITE, OP_WRITE
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DatagramChannelConfiggetConfig()Returns the configuration of this channel.java.net.InetSocketAddressgetLocalAddress()Returns the local address where this channel is bound to.java.net.InetSocketAddressgetRemoteAddress()Returns the remote address where this channel is connected to.ChannelFuturejoinGroup(java.net.InetAddress multicastAddress)Joins a multicast group.ChannelFuturejoinGroup(java.net.InetSocketAddress multicastAddress, java.net.NetworkInterface networkInterface)Joins the specified multicast group at the specified interface.ChannelFutureleaveGroup(java.net.InetAddress multicastAddress)Leaves a multicast group.ChannelFutureleaveGroup(java.net.InetSocketAddress multicastAddress, java.net.NetworkInterface networkInterface)Leaves a multicast group on a specified local interface.-
Methods inherited from interface org.jboss.netty.channel.Channel
bind, close, connect, disconnect, getAttachment, getCloseFuture, getFactory, getId, getInterestOps, getParent, getPipeline, getUserDefinedWritability, isBound, isConnected, isOpen, isReadable, isWritable, setAttachment, setInterestOps, setReadable, setUserDefinedWritability, unbind, write, write
-
-
-
-
Method Detail
-
getConfig
DatagramChannelConfig getConfig()
Description copied from interface:ChannelReturns the configuration of this channel.
-
getLocalAddress
java.net.InetSocketAddress getLocalAddress()
Description copied from interface:ChannelReturns the local address where this channel is bound to. The returnedSocketAddressis supposed to be down-cast into more concrete type such asInetSocketAddressto retrieve the detailed information.- Specified by:
getLocalAddressin interfaceChannel- Returns:
- the local address of this channel.
nullif this channel is not bound.
-
getRemoteAddress
java.net.InetSocketAddress getRemoteAddress()
Description copied from interface:ChannelReturns the remote address where this channel is connected to. The returnedSocketAddressis supposed to be down-cast into more concrete type such asInetSocketAddressto retrieve the detailed information.- Specified by:
getRemoteAddressin interfaceChannel- Returns:
- the remote address of this channel.
nullif this channel is not connected. If this channel is not connected but it can receive messages from arbitrary remote addresses (e.g.DatagramChannel, useMessageEvent.getRemoteAddress()to determine the origination of the received message as this method will returnnull.
-
joinGroup
ChannelFuture joinGroup(java.net.InetAddress multicastAddress)
Joins a multicast group.
-
joinGroup
ChannelFuture joinGroup(java.net.InetSocketAddress multicastAddress, java.net.NetworkInterface networkInterface)
Joins the specified multicast group at the specified interface.
-
leaveGroup
ChannelFuture leaveGroup(java.net.InetAddress multicastAddress)
Leaves a multicast group.
-
leaveGroup
ChannelFuture leaveGroup(java.net.InetSocketAddress multicastAddress, java.net.NetworkInterface networkInterface)
Leaves a multicast group on a specified local interface.
-
-