JXTA

Uses of Interface
net.jxta.endpoint.EndpointListener

Packages that use EndpointListener
net.jxta.endpoint Provides interfaces and classes used for the addressing, filtering, sending, and receiving of messages within JXTA. 
net.jxta.rendezvous The RendezVous Service is responsible for propagating messages within a JXTA PeerGroup. 
 

Uses of EndpointListener in net.jxta.endpoint
 

Subinterfaces of EndpointListener in net.jxta.endpoint
 interface EndpointService
          The EndpointService provides the API for sending and receiving messages between peers.
 

Methods in net.jxta.endpoint that return EndpointListener
 EndpointListener EndpointService.getIncomingMessageListener(String serviceName, String serviceParam)
          Get the listener for the specified address.
 EndpointListener EndpointService.removeIncomingMessageListener(String serviceName, String serviceParam)
          Remove the listener for the specified address.
 

Methods in net.jxta.endpoint with parameters of type EndpointListener
 boolean EndpointService.addIncomingMessageListener(EndpointListener listener, String serviceName, String serviceParam)
          Add a listener for the specified address.
 

Uses of EndpointListener in net.jxta.rendezvous
 

Methods in net.jxta.rendezvous that return EndpointListener
 EndpointListener RendezVousService.removePropagateListener(String serviceName, String serviceParam, EndpointListener listener)
          Deprecated. This method just calls EndpointService.removeIncomingMessageListener(java.lang.String, java.lang.String). It's better to just deregister your listener with the Endpoint. This call may be eventually removed.
 

Methods in net.jxta.rendezvous with parameters of type EndpointListener
 boolean RendezVousService.addPropagateListener(String serviceName, String serviceParam, EndpointListener listener)
          Deprecated. This method just calls EndpointService.addIncomingMessageListener(net.jxta.endpoint.EndpointListener, java.lang.String, java.lang.String). It's better to just register your listener with the Endpoint. This call may be eventually removed.
 EndpointListener RendezVousService.removePropagateListener(String serviceName, String serviceParam, EndpointListener listener)
          Deprecated. This method just calls EndpointService.removeIncomingMessageListener(java.lang.String, java.lang.String). It's better to just deregister your listener with the Endpoint. This call may be eventually removed.
 


JXSE