JXTA

Uses of Interface
net.jxta.pipe.PipeMsgListener

Packages that use PipeMsgListener
net.jxta.pipe Pipes are the core mechanism for exchanging messages between JXTA applications or services. 
net.jxta.socket The socket package provides interface ala Socket over JXTA pipes. 
net.jxta.util A collection of utility classes used by the JXTA implementation and/or useful to users of the JXTA API. 
 

Uses of PipeMsgListener in net.jxta.pipe
 

Methods in net.jxta.pipe with parameters of type PipeMsgListener
 InputPipe PipeService.createInputPipe(PipeAdvertisement adv, PipeMsgListener listener)
          Create an InputPipe from a pipe Advertisement
 

Uses of PipeMsgListener in net.jxta.socket
 

Classes in net.jxta.socket that implement PipeMsgListener
 class JxtaMulticastSocket
          The JxtaMulticastSocket class is useful for sending and receiving JXTA multicast packets.
 class JxtaServerSocket
          JxtaServerSocket is a bi-directional Pipe that behaves very much like ServerSocket.
 class JxtaSocket
          JxtaSocket is a sub-class of java.net.socket, and should be used like a java.net.Socket.
 

Uses of PipeMsgListener in net.jxta.util
 

Classes in net.jxta.util that implement PipeMsgListener
 class JxtaBiDiPipe
          JxtaBiDiPipe is a pair of UnicastPipe channels that implements a bidirectional pipe.
 class JxtaServerPipe
          The server side of a JxtaBiDiPipe.
 

Fields in net.jxta.util declared as PipeMsgListener
protected  PipeMsgListener JxtaBiDiPipe.msgListener
           
 

Methods in net.jxta.util that return PipeMsgListener
 PipeMsgListener JxtaBiDiPipe.getListener()
          Deprecated. use getMessageListener instead
 PipeMsgListener JxtaBiDiPipe.getMessageListener()
          Returns the message listener for this pipe
 

Methods in net.jxta.util with parameters of type PipeMsgListener
 void JxtaBiDiPipe.connect(PeerGroup group, PeerID peerid, PipeAdvertisement pipeAd, int timeout, PipeMsgListener msgListener)
          Connects to a remote JxtaServerPipe
 void JxtaBiDiPipe.connect(PeerGroup group, PeerID peerid, PipeAdvertisement pipeAd, int timeout, PipeMsgListener msgListener, boolean reliable)
          Connects to a remote JxtaServerPipe
 void JxtaBiDiPipe.setListener(PipeMsgListener msgListener)
          Deprecated. use setMessageListener instead
 void JxtaBiDiPipe.setMessageListener(PipeMsgListener msgListener)
          Sets message listener for a pipe spawned by the JxtaServerPipe.
 

Constructors in net.jxta.util with parameters of type PipeMsgListener
JxtaBiDiPipe(PeerGroup group, PipeAdvertisement pipeAd, int timeout, PipeMsgListener msgListener)
          Creates a bidirectional pipe.
JxtaBiDiPipe(PeerGroup group, PipeAdvertisement pipeAd, int timeout, PipeMsgListener msgListener, boolean reliable)
          attempts to create a bidirectional connection to remote peer
JxtaBiDiPipe(PeerGroup group, PipeAdvertisement pipeAd, PipeMsgListener msgListener)
          Creates a bidirectional pipe.
 


JXSE