Uses of Class
edu.vub.at.actors.natives.DiscoveryManager.Subscription

Packages that use DiscoveryManager.Subscription
edu.vub.at.actors.natives   
 

Uses of DiscoveryManager.Subscription in edu.vub.at.actors.natives
 

Methods in edu.vub.at.actors.natives with parameters of type DiscoveryManager.Subscription
 void ELDiscoveryActor.event_clientSubscribed(DiscoveryManager.Subscription sub)
          This event is fired whenever an object requests a service using the require: language construct.
 void ELDiscoveryActor.event_cancelSubscription(DiscoveryManager.Subscription sub)
          This event is fired whenever a service request is being revoked.
 void DiscoveryManager.addLocalSubscription(DiscoveryManager.Subscription sub)
          A new local subscription: - is stored locally - is checked against local publications, which may cause the subscrption to fire immediately - is broadcast to all currently connected members (done by VM)
 void DiscoveryManager.deleteLocalSubscription(DiscoveryManager.Subscription sub)
          A deleted local subscription is simply deleted locally.
private  void DiscoveryManager.checkLocalPublishers(DiscoveryManager.Subscription sub)
          When a new subscription is added locally, it is first checked whether this subscription can already be satisfied by some local publications on this VM (but from different actors)
 

Constructors in edu.vub.at.actors.natives with parameters of type DiscoveryManager.Subscription
NATActorMirror.NATSubscription(ELDiscoveryActor discoveryActor, ATStripe topic, ATClosure handler, DiscoveryManager.Subscription sub)