Uses of Class
com.scivicslab.pojoactor.core.distributed.NodeInfo
Packages that use NodeInfo
Package
Description
-
Uses of NodeInfo in com.scivicslab.pojoactor.core.distributed
Methods in com.scivicslab.pojoactor.core.distributed that return NodeInfoModifier and TypeMethodDescriptionDistributedActorSystem.getMyNode()Returns this node's identity.RemoteActorRef.getNodeInfo()Methods in com.scivicslab.pojoactor.core.distributed that return types with arguments of type NodeInfoModifier and TypeMethodDescriptionDistributedActorSystem.getNodes()Returns all nodes in the cluster (including this node).Methods in com.scivicslab.pojoactor.core.distributed with parameters of type NodeInfoModifier and TypeMethodDescriptionDistributedActorSystem.remoteActorOf(NodeInfo node, String actorName) Returns aRemoteActorReffor an actor on the given remote node.Constructors in com.scivicslab.pojoactor.core.distributed with parameters of type NodeInfoModifierConstructorDescriptionKafkaActorServer(ActorSystem actorSystem, NodeInfo myNode, String brokers) Creates a KafkaActorServer.RemoteActorRef(String actorName, NodeInfo nodeInfo) Constructs a RemoteActorRef using the default HTTP transport.RemoteActorRef(String actorName, NodeInfo nodeInfo, TransportLayer transport) Constructs a RemoteActorRef with an explicit transport layer. -
Uses of NodeInfo in com.scivicslab.pojoactor.core.distributed.discovery
Methods in com.scivicslab.pojoactor.core.distributed.discovery that return types with arguments of type NodeInfoModifier and TypeMethodDescriptionGridEngineNodeDiscovery.getAllNodes()K8sNodeDiscovery.getAllNodes()NodeDiscovery.getAllNodes()Returns information about all nodes in the cluster.SlurmNodeDiscovery.getAllNodes() -
Uses of NodeInfo in com.scivicslab.pojoactor.core.distributed.transport
Methods in com.scivicslab.pojoactor.core.distributed.transport with parameters of type NodeInfoModifier and TypeMethodDescriptionvoidHttpTransport.send(NodeInfo target, ActorMessage message) Sends a message without waiting for a response.voidKafkaTransport.send(NodeInfo target, ActorMessage message) voidTransportLayer.send(NodeInfo target, ActorMessage message) Sends a message to an actor on the target node without waiting for a result (fire-and-forget).HttpTransport.sendAndWait(NodeInfo target, ActorMessage message, Duration timeout) Sends a message and waits synchronously for the result.KafkaTransport.sendAndWait(NodeInfo target, ActorMessage message, Duration timeout) TransportLayer.sendAndWait(NodeInfo target, ActorMessage message, Duration timeout) Sends a message to an actor on the target node and waits for the result.Constructors in com.scivicslab.pojoactor.core.distributed.transport with parameters of type NodeInfoModifierConstructorDescriptionKafkaTransport(NodeInfo myNode, String brokers) Creates a KafkaTransport for the given local node.