FabricRuntime.RegisterStatefulServiceFactory Method

Definition

Registers the specified IStatefulServiceFactory for the specified service type.

public void RegisterStatefulServiceFactory (string serviceTypeName, System.Fabric.IStatefulServiceFactory factory);
member this.RegisterStatefulServiceFactory : string * System.Fabric.IStatefulServiceFactory -> unit
Public Sub RegisterStatefulServiceFactory (serviceTypeName As String, factory As IStatefulServiceFactory)

Parameters

serviceTypeName
String

The type name of the service type (as a string). This should match the type of the service group type as specified in the manifests and/or the CreateService command.

factory
IStatefulServiceFactory

The IStatefulServiceFactory which can create the specified service type.

Applies to