Sea 0.4.0

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

Packages that use NetAgent
gov.lbl.dsd.sea.nio Efficient and scalable non-blocking asynchronous network agent connectors for the Staged Event Architecture Framework. 
gov.lbl.dsd.sea.nio.event Request and response events for non-blocking network agents from the gov.lbl.dsd.sea.nio package. 
 

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

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

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

Methods in gov.lbl.dsd.sea.nio.event that return NetAgent
 NetAgent ChannelResponse.getAgent()
           
 

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


Sea 0.4.0