ActorRuntime Class
- java.
lang. Object - microsoft.
servicefabric. actors. runtime. ActorRuntime
- microsoft.
public class ActorRuntime
Contains methods to register actor type with Service Fabric runtime.
Method Summary
Modifier and Type | Method and Description |
---|---|
static<T extends Actor |
registerActorAsync(Class<T> actorType, BiFunction<StatefulServiceContext, ActorTypeInformation, FabricActorService> actorServiceFactory, Duration timeout)
Registers an actor type with Service Fabric runtime. |
static<T extends Actor |
registerActorAsync(Class<T> actorType, Duration timeout)
Registers an actor type with Service Fabric runtime. |
Method Details
registerActorAsync
public static static
Registers an actor type with Service Fabric runtime.
Parameters:
actorType
- The actor class implementing Actor interface
actorServiceFactory
- Actor Service implementation to create Actor. See FabricActorService
timeout
- A timeout period after which the registration operation will be canceled.
Returns:
A task that represents the asynchronous operation to register actor type with Service Fabric runtime.
registerActorAsync
public static static
Registers an actor type with Service Fabric runtime.
Parameters:
actorType
- The actor class implementing Actor interface
timeout
- A timeout period after which the registration operation will be canceled.
Returns:
A task that represents the asynchronous operation to register actor type with Service Fabric runtime.
Applies to
Colaborar conosco no GitHub
A fonte deste conteúdo pode ser encontrada no GitHub, onde você também pode criar e revisar problemas e solicitações de pull. Para obter mais informações, confira o nosso guia para colaboradores.
Azure SDK for Java