| public class java.net MulticastSocket
|
Java SE 6 |
A multicast group is specified by a class D IP address
and by a standard UDP port number. Class D IP addresses
are in the range 224.0.0.0 to 239.255.255.255,
inclusive. The address 224.0.0.0 is reserved and should not be used.
One would join a multicast group by first creating a MulticastSocket
with the desired port, then invoking the
joinGroup(InetAddress groupAddr)
method:
// join a Multicast group and send the group salutations
...
String msg = "Hello";
InetAddress group = InetAddress.getByName("228.5.6.7");
MulticastSocket s = new MulticastSocket(6789);
s.joinGroup(group);
DatagramPacket hi = new DatagramPacket(msg.getBytes(), msg.length(),
group, 6789);
s.send(hi);
// get their responses!
byte[] buf = new byte[1000];
DatagramPacket recv = new DatagramPacket(buf, buf.length);
s.receive(recv);
...
// OK, I'm done talking - leave the group...
s.leaveGroup(group);
When one sends a message to a multicast group, all subscribing
recipients to that host and port receive the message (within the
time-to-live range of the packet, see below). The socket needn't
be a member of the multicast group to send messages to it.
When a socket subscribes to a multicast group/port, it receives datagrams sent by other hosts to the group/port, as do all other members of the group and port. A socket relinquishes membership in a group by the leaveGroup(InetAddress addr) method. Multiple MulticastSocket's may subscribe to a multicast group and port concurrently, and they will all receive group datagrams.
Currently applets are not allowed to use multicast sockets.
| since | JDK1.1 |
| Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| public | MulticastSocket() throws IOException Create a multicast socket. If there is a security manager,
its
When the socket is created the
| ||||||||||
| public | MulticastSocket(int port) throws IOException Create a multicast socket and bind it to a specific port. If there is a security manager,
its
When the socket is created the
| ||||||||||
| public | MulticastSocket(SocketAddress bindaddr) throws IOException Create a MulticastSocket bound to the specified socket address.
Or, if the address is
If there is a security manager,
its
When the socket is created the
| ||||||||||
| Methods | |||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| public void | joinGroup(InetAddress mcastaddr) throws IOException Joins a multicast group. Its behavior may be affected by setInterface or setNetworkInterface.
If there is a security manager, this method first
calls its
| ||||||||||||||
| public void | joinGroup(SocketAddress mcastaddr, NetworkInterface netIf) throws IOException Joins the specified multicast group at the specified interface. If there is a security manager, this method first
calls its
| ||||||||||||||
| public void | leaveGroup(InetAddress mcastaddr) throws IOException Leave a multicast group. Its behavior may be affected by setInterface or setNetworkInterface.
If there is a security manager, this method first
calls its
| ||||||||||||||
| public void | leaveGroup(SocketAddress mcastaddr, NetworkInterface netIf) throws IOException Leave a multicast group on a specified local interface. If there is a security manager, this method first
calls its
| ||||||||||||||
| public void | send(DatagramPacket p, byte ttl) throws IOException Sends a datagram packet to the destination, with a TTL (time- to-live) other than the default for the socket. This method need only be used in instances where a particular TTL is desired; otherwise it is preferable to set a TTL once on the socket, and use that default TTL for all packets. This method does not alter the default TTL for the socket. Its behavior may be affected by setInterface.
If there is a security manager, this method first performs some
security checks. First, if
| ||||||||||||||
| Properties | |||||||||
|---|---|---|---|---|---|---|---|---|---|
| public void | setInterface(InetAddress inf) throws SocketException Set the multicast network interface used by methods whose behavior would be affected by the value of the network interface. Useful for multihomed hosts.
| ||||||||
| public InetAddress | getInterface() throws SocketException Retrieve the address of the network interface used for multicast packets.
| ||||||||
| public void | setLoopbackMode(boolean disable) throws SocketException Disable/Enable local loopback of multicast datagrams The option is used by the platform's networking code as a hint for setting whether multicast data will be looped back to the local socket. Because this option is a hint, applications that want to
verify what loopback mode is set to should call
| ||||||||
| public boolean | getLoopbackMode() throws SocketException Get the setting for local loopback of multicast datagrams.
| ||||||||
| public void | setNetworkInterface(NetworkInterface netIf) throws SocketException Specify the network interface for outgoing multicast datagrams sent on this socket.
| ||||||||
| public NetworkInterface | getNetworkInterface() throws SocketException Get the multicast network interface set.
| ||||||||
| public void | setTimeToLive(int ttl) throws IOException Set the default time-to-live for multicast packets sent out on this MulticastSocket in order to control the
scope of the multicasts.
The ttl must be in the range
| ||||||||
| public int | getTimeToLive() throws IOException Get the default time-to-live for multicast packets sent out on the socket.
| ||||||||
| public void | setTTL(byte ttl) throws IOException Set the default time-to-live for multicast packets sent out on this MulticastSocket in order to control the
scope of the multicasts.
The ttl is an unsigned 8-bit quantity, and so must be
in the range
| ||||||||
| public byte | getTTL() throws IOException Get the default time-to-live for multicast packets sent out on the socket.
| ||||||||
| About DocWeb · Bundles · Export · Export All | Top 10 · Statistics · Login |
| About Sun · Contact · Privacy · Terms of Use · Trademarks | Java SE 6 · Copyright © 1994-2009 Sun Microsystems, Inc.All rights reserved. Use is subject to license terms |
![]() |
![]() |
|