Uses of Class
edu.vub.at.actors.natives.Packet

Packages that use Packet
edu.vub.at.actors.natives   
edu.vub.at.actors.net.cmd   
 

Uses of Packet in edu.vub.at.actors.natives
 

Fields in edu.vub.at.actors.natives declared as Packet
 Packet ELFarReference.TransmissionEvent.serializedMessage_
           
 Packet DiscoveryManager.Publication.providedStripe_
           
 Packet DiscoveryManager.Publication.exportedService_
           
 Packet DiscoveryManager.Subscription.requiredStripe_
           
 Packet DiscoveryManager.Subscription.registeredHandler_
           
 

Methods in edu.vub.at.actors.natives with parameters of type Packet
static NATLocalFarRef NATActorMirror.createActor(ELVirtualMachine host, Packet parametersPkt, Packet initcodePkt, ATActorMirror actorMirror)
          Creates a new actor on the specified host Virtual Machine.
 void ELDiscoveryActor.event_remotePublication(Packet serializedProvidedTopic, Packet serializedProvidedService)
          Received in response to the CMDProvideService command of a remote VM
 void ELDiscoveryActor.event_remoteSubscription(Packet serializedRequiredTopic, org.jgroups.Address replyTo)
          Received in response to the CMDRequireService command of a remote VM TODO: perhaps transform this into a sync_event and let CMDRequireService perform the reply
protected  void ELActor.event_init(BlockingFuture future, Packet parametersPkt, Packet initcodePkt)
          The initial event sent by the actor mirror to its event loop to intialize itself.
 void ELActor.event_accept(Packet serializedMessage)
          The main entry point for any asynchronous messages sent to this actor by external sources (e.g. the VM or other local actors).
 void ELActor.event_serviceJoined(Packet requiredStripePkt, ATFarReference myHandler, Packet discoveredStripePkt, Packet remoteServicePkt)
          When the discovery manager receives a publication from another local actor or another remote VM, the actor is asked to compare the incoming publication against a subscription that it had announced previously.
 

Constructors in edu.vub.at.actors.natives with parameters of type Packet
DiscoveryManager.Publication(ELActor provider, Packet stripe, Packet exportedService)
           
DiscoveryManager.Subscription(ELActor subscriber, Packet stripe, Packet registeredHandler, boolean permanent)
           
 

Uses of Packet in edu.vub.at.actors.net.cmd
 

Fields in edu.vub.at.actors.net.cmd declared as Packet
private  Packet CMDTransmitATMessage.serializedATMessage_
           
private  Packet CMDRequireService.serializedTopic_
           
private  Packet CMDProvideService.serializedTopic_
           
private  Packet CMDProvideService.serializedService_
           
 

Constructors in edu.vub.at.actors.net.cmd with parameters of type Packet
CMDTransmitATMessage(int destinationActorId, Packet atMessage)
           
CMDRequireService(Packet topic)
           
CMDProvideService(Packet topic, Packet service)