Uses of Class
com.scivicslab.pojoactor.core.ActorSystem
Packages that use ActorSystem
-
Uses of ActorSystem in com.scivicslab.pojoactor.core
Fields in com.scivicslab.pojoactor.core declared as ActorSystemMethods in com.scivicslab.pojoactor.core that return ActorSystemModifier and TypeMethodDescriptionActorSystem.Builder.build()Builds and returns a new ActorSystem instance.ActorRef.system()Returns the actor system this actor belongs to.Methods in com.scivicslab.pojoactor.core with parameters of type ActorSystemModifier and TypeMethodDescriptionstatic <T> ActorRef<T> DynamicActorLoader.loadActorIntoSystem(ActorSystem system, Path jarPath, String className, String actorName) Loads a class from an external JAR file and wraps it as an ActorRef, registering it with the given ActorSystem.voidActorProvider.registerActors(ActorSystem system) Registers actors provided by this plugin into the given ActorSystem.Constructors in com.scivicslab.pojoactor.core with parameters of type ActorSystemModifierConstructorDescriptionActorRef(String actorName, T object, ActorSystem actorSystem) Constructs an ActorRef with the specified name, object, and actor system. -
Uses of ActorSystem in com.scivicslab.pojoactor.core.distributed
Methods in com.scivicslab.pojoactor.core.distributed that return ActorSystemModifier and TypeMethodDescriptionDistributedActorSystem.getLocalActorSystem()Returns the underlying local actor system.Methods in com.scivicslab.pojoactor.core.distributed with parameters of type ActorSystemModifier and TypeMethodDescriptionDistributedActorSystem.Builder.localActorSystem(ActorSystem system) Sets the local actor system.Constructors in com.scivicslab.pojoactor.core.distributed with parameters of type ActorSystemModifierConstructorDescriptionHttpActorServer(ActorSystem actorSystem, int port) Creates an HttpActorServer that listens on the given port.KafkaActorServer(ActorSystem actorSystem, NodeInfo myNode, String brokers) Creates a KafkaActorServer.