Uses of Class
io.dapr.actors.runtime.AbstractActor
Package | Description |
---|---|
io.dapr.actors.runtime |
-
Uses of AbstractActor in io.dapr.actors.runtime
Classes in io.dapr.actors.runtime with type parameters of type AbstractActor Modifier and Type Interface Description interface
ActorFactory<T extends AbstractActor>
Creates an actor of a given type.class
ActorRuntimeContext<T extends AbstractActor>
Provides the context for the Actor's runtime.Methods in io.dapr.actors.runtime with type parameters of type AbstractActor Modifier and Type Method Description <T extends AbstractActor>
voidActorRuntime. registerActor(Class<T> clazz)
Registers an actor with the runtime, usingDefaultObjectSerializer
andDefaultActorFactory
.<T extends AbstractActor>
voidActorRuntime. registerActor(Class<T> clazz, ActorFactory<T> actorFactory)
Registers an actor with the runtime, usingDefaultObjectSerializer
.<T extends AbstractActor>
voidActorRuntime. registerActor(Class<T> clazz, ActorFactory<T> actorFactory, DaprObjectSerializer objectSerializer, DaprObjectSerializer stateSerializer)
Registers an actor with the runtime.<T extends AbstractActor>
voidActorRuntime. registerActor(Class<T> clazz, DaprObjectSerializer objectSerializer, DaprObjectSerializer stateSerializer)
Registers an actor with the runtime.