Sea 0.2.1

Uses of Class
gov.lbl.dsd.sea.nio.Peer

Packages that use Peer
gov.lbl.dsd.sea.nio Efficient and scalable non-blocking asynchronous network peer connectors for the Staged Event Architecture Framework. 
gov.lbl.dsd.sea.nio.demo Demos for gov.lbl.dsd.sea.nio package. 
gov.lbl.dsd.sea.nio.event Request and response events for non-blocking network peers from the gov.lbl.dsd.sea.nio package. 
 

Uses of Peer in gov.lbl.dsd.sea.nio
 

Methods in gov.lbl.dsd.sea.nio that return Peer
 Peer Peer.addListenPort(Stage observer, int port)
          Tells the peer to start listening as a server for TCP connections on the given port.
 Peer Peer.addConnectAddress(Stage observer, InetSocketAddress address)
          Tells the peer to start a TCP client connection to the given remote address.
 

Uses of Peer in gov.lbl.dsd.sea.nio.demo
 

Subclasses of Peer in gov.lbl.dsd.sea.nio.demo
 class SingleClient
          Simple single-threaded echo client.
 class SingleEchoServer
          Simple single-threaded echo server.
 class SinglePingPongBench
          Simple single-threaded ping pong benchmark.
 class SingleTimeServer
          Simple single-threaded time server.
 

Uses of Peer in gov.lbl.dsd.sea.nio.event
 

Methods in gov.lbl.dsd.sea.nio.event that return Peer
 Peer ChannelResponse.getPeer()
           
 

Constructors in gov.lbl.dsd.sea.nio.event with parameters of type Peer
ChannelResponse.Registered(Peer peer, SelectionKey key, IOException exception, int interestOps)
           
ChannelResponse.Accepted(Peer peer, SelectionKey key, IOException exception)
           
ChannelResponse.Connected(Peer peer, SelectionKey key, IOException exception)
           
ChannelResponse.Closed(Peer peer, SelectionKey key, IOException exception)
           
ChannelResponse.Read(Peer peer, SelectionKey key, IOException exception, ByteBuffer buffer)
           
ChannelResponse.Write(Peer peer, SelectionKey key, IOException exception, ByteBuffer buffer, int position)
           
 


Sea 0.2.1