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)
public interface StatefulServiceFactory
方法
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.
|