Uses of Class
io.dapr.actors.runtime.AbstractActor
Packages that use AbstractActor
-
Uses of AbstractActor in io.dapr.actors.runtime
Classes in io.dapr.actors.runtime with type parameters of type AbstractActorModifier and TypeInterfaceDescriptioninterface
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 AbstractActorModifier and TypeMethodDescription<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.