Uses of Class
soc.server.genericServer.LocalStringConnection

Packages that use LocalStringConnection
soc.client   
soc.server.genericServer   
 

Uses of LocalStringConnection in soc.client
 

Fields in soc.client declared as LocalStringConnection
(package private)  LocalStringConnection SOCPlayerClient.ClientNetwork.SOCPlayerLocalStringReader.locl
           
protected  LocalStringConnection SOCDisplaylessPlayerClient.sLocal
           
 

Constructors in soc.client with parameters of type LocalStringConnection
SOCPlayerClient.ClientNetwork.SOCPlayerLocalStringReader(LocalStringConnection prConn)
          Start a new thread and listen to practice server.
 

Uses of LocalStringConnection in soc.server.genericServer
 

Fields in soc.server.genericServer declared as LocalStringConnection
private  LocalStringConnection LocalStringConnection.ourPeer
           
 

Fields in soc.server.genericServer with type parameters of type LocalStringConnection
protected  java.util.Vector<LocalStringConnection> LocalStringServerSocket.acceptQueue
          Waiting client connections (client-peer sides); Added by connectClient, removed by accept method
protected  java.util.Vector<LocalStringConnection> LocalStringServerSocket.allConnected
          Server-peer sides of connected clients; Added by accept method
 

Methods in soc.server.genericServer that return LocalStringConnection
static LocalStringConnection LocalStringServerSocket.connectTo(java.lang.String name)
          Find and connect to stringport with this name.
static LocalStringConnection LocalStringServerSocket.connectTo(java.lang.String name, LocalStringConnection client)
          Find and connect to stringport with this name.
 LocalStringConnection LocalStringConnection.getPeer()
          Remember, the peer's in is our out, and vice versa.
protected  LocalStringConnection LocalStringServerSocket.queueAcceptClient(LocalStringConnection client)
          Queue this client to be accepted, and return their new server-peer; if calling this from methods initiated by the client, check if accepted.
 

Methods in soc.server.genericServer that return types with arguments of type LocalStringConnection
 java.util.Enumeration<LocalStringConnection> LocalStringServerSocket.allClients()
           
 

Methods in soc.server.genericServer with parameters of type LocalStringConnection
static LocalStringConnection LocalStringServerSocket.connectTo(java.lang.String name, LocalStringConnection client)
          Find and connect to stringport with this name.
protected  LocalStringConnection LocalStringServerSocket.queueAcceptClient(LocalStringConnection client)
          Queue this client to be accepted, and return their new server-peer; if calling this from methods initiated by the client, check if accepted.
 

Constructors in soc.server.genericServer with parameters of type LocalStringConnection
LocalStringConnection(LocalStringConnection peer)
          Constructor for an existing peer; we'll share two Vectors for in/out queues.