fabric.common.net
Class SubServerSocket

java.lang.Object
  extended by fabric.common.net.SubServerSocket

public class SubServerSocket
extends java.lang.Object

Server-side multiplexed socket implementation. The API mirrors that of java.net.ServerSocket.

Author:
mdgeorge
See Also:
ServerSocket

Constructor Summary
protected SubServerSocket(SubServerSocketFactory factory)
           
 
Method Summary
 SubSocket accept()
           
 void bind(java.lang.String name)
           
 void bind(java.lang.String name, int backlog)
           
 void close()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SubServerSocket

protected SubServerSocket(SubServerSocketFactory factory)
See Also:
SubServerSocketFactory
Method Detail

accept

public SubSocket accept()
                 throws java.io.IOException
Throws:
java.io.IOException
See Also:
ServerSocket.accept()

bind

public void bind(java.lang.String name)
          throws java.io.IOException
Throws:
java.io.IOException
See Also:
ServerSocket.bind(java.net.SocketAddress)

bind

public void bind(java.lang.String name,
                 int backlog)
          throws java.io.IOException
Throws:
java.io.IOException
See Also:
ServerSocket.bind(java.net.SocketAddress, int)

close

public void close()
           throws java.io.IOException
Throws:
java.io.IOException
See Also:
ServerSocket.close()