StatefulServiceFactory Interface
public interface StatefulServiceFactory
Represents a stateful service factory that is responsible for creating replicas of a specific type of stateful service. Stateful service factories are registered with the FabricRuntime by service hosts via system.fabric.FabricRuntime#registerStatefulServiceFactory(java.lang.String,system.fabric.StatefulServiceFactory) or system.fabric.FabricRuntime#registerStatefulServiceFactoryAsync(java.lang.String,system.fabric.StatefulServiceFactory,java.time.Duration)
Method Summary
Modifier and Type | Method and Description |
---|---|
Stateful |
createReplica(String serviceTypeName, URI serviceName, byte[] initializationData, UUID partitionId, long replicaId)
Called by Service Fabric to create a stateful service replica for a particular service. |
Method Details
createReplica
public StatefulServiceReplica createReplica(String serviceTypeName, URI serviceName, byte[] initializationData, UUID partitionId, long replicaId)
Called by Service Fabric to create a stateful service replica for a particular service.
Parameters:
Returns:
Throws:
Applies to
Azure SDK for Java