Uses of Interface
jxl.peermi.PeerRemote

Packages that use PeerRemote
jxl.enclosure.peer Classes that enable dynamic download and install of needed modules. 
jxl.peermi An extention of the standard RMI classes to enable true p2p, bidi rmi. 
 

Uses of PeerRemote in jxl.enclosure.peer
 

Subinterfaces of PeerRemote in jxl.enclosure.peer
 interface ModuleServerInterface
          PeerRemote interface to the ModuleServer
 

Classes in jxl.enclosure.peer that implement PeerRemote
 class ModuleServer
          The implementation of the module server.
 

Uses of PeerRemote in jxl.peermi
 

Classes in jxl.peermi with type parameters of type PeerRemote
 class PeerHashSet<E extends PeerRemote>
          A HashSet conntaining only PeerRemote objects.
 class PeerManager<T extends PeerRemote>
           
 

Subinterfaces of PeerRemote in jxl.peermi
 interface PeerRegistryInterface
          PeerRemote interface to PeerRegistry
 

Classes in jxl.peermi that implement PeerRemote
 class PeerRegistry
          PeerRegistry is the universal lookup point for PeerRemote objects.
 class PeerRemoteObject
          PeerRemoteObject must be extended to create a custom Peermi remote object.
 

Methods in jxl.peermi with type parameters of type PeerRemote
<T extends PeerRemote>
PeerManager<T>
PeerRegistry.requestPeerManager(java.lang.String name, java.lang.Class<T> ifaceType)
          Return PeerManager for binding name for interfact type ifaceType.
 

Methods in jxl.peermi that return PeerRemote
 PeerRemote PeerRegistry.lookup(java.lang.String name)
          Remote method.
 PeerRemote PeerRegistryInterface.lookup(java.lang.String name)
           
static PeerRemote PeerRemoteObject.toStub(java.rmi.Remote r)
           
 

Methods in jxl.peermi with parameters of type PeerRemote
 void DiscoveryListener.discovery(PeerRemote remote)
           
 void PeerManager.discovery(PeerRemote remote)
           
static boolean PeerRemoteObject.isAlive(PeerRemote r)
          Calls r.checkAlive().
 

Method parameters in jxl.peermi with type arguments of type PeerRemote
static
<T> java.util.Collection<T>
Multicast.multicast(PeerHashSet<? extends PeerRemote> peers, MethodCall<T> call)
          Make a multicast method invocation on the remote peers in peers.
static
<T> java.util.Collection<T>
Multicast.multicast(PeerHashSet<? extends PeerRemote> peers, MethodCall<T> call, LimitedSearch<T> filter)
          Make a multicast method invocation on peers using filter to filter the results and to limmit the number of returns.