Java in a Nutshell Online Quick Reference for Java 1.1

CLASS java.net.MulticastSocket

Availability: JDK 1.1

public class MulticastSocket extends DatagramSocket {
   // Public Constructors
      public MulticastSocket() throws IOException;
      public MulticastSocket(int port) throws IOException;
   // Public Instance Methods
      public InetAddress getInterface() throws SocketException;
      public byte getTTL() throws IOException;
      public void joinGroup(InetAddress mcastaddr) throws IOException;
      public void leaveGroup(InetAddress mcastaddr) throws IOException;
      public synchronized void send(DatagramPacket p, byte ttl) throws IOException;
      public void setInterface(InetAddress inf) throws SocketException;
      public void setTTL(byte ttl) throws IOException;
}

Java in a Nutshell Online Quick Reference for Java 1.1
Created by David Flanagan. Copyright © 1997 by O'Reilly & Associates.

Casa de Bender