Package | Description |
---|---|
io.dapr.actors.runtime |
Modifier and Type | Interface and 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.
|
Modifier and Type | Method and Description |
---|---|
<T extends AbstractActor> |
ActorRuntime.registerActor(Class<T> clazz)
Registers an actor with the runtime, using
DefaultObjectSerializer and DefaultActorFactory . |
<T extends AbstractActor> |
ActorRuntime.registerActor(Class<T> clazz,
ActorFactory<T> actorFactory)
Registers an actor with the runtime, using
DefaultObjectSerializer . |
<T extends AbstractActor> |
ActorRuntime.registerActor(Class<T> clazz,
ActorFactory<T> actorFactory,
DaprObjectSerializer objectSerializer,
DaprObjectSerializer stateSerializer)
Registers an actor with the runtime.
|
<T extends AbstractActor> |
ActorRuntime.registerActor(Class<T> clazz,
DaprObjectSerializer objectSerializer,
DaprObjectSerializer stateSerializer)
Registers an actor with the runtime.
|
Copyright © 2020. All rights reserved.