Aracılığıyla paylaş


ReliableCollectionsActorStateProvider Constructors

Definition

Overloads

ReliableCollectionsActorStateProvider()

Initializes a new instance of the ReliableCollectionsActorStateProvider class. ReliableCollectionsActorStateProvider is currently in PREVIEW.

ReliableCollectionsActorStateProvider(ReliableStateManagerConfiguration)

Initializes a new instance of the ReliableCollectionsActorStateProvider class with specified configuration ReliableCollectionsActorStateProvider is currently in PREVIEW.

ReliableCollectionsActorStateProvider(ReliableStateManagerConfiguration, Int32, Int32)

Initializes a new instance of the ReliableCollectionsActorStateProvider class with specified configuration ReliableCollectionsActorStateProvider is currently in PREVIEW.

ReliableCollectionsActorStateProvider()

Initializes a new instance of the ReliableCollectionsActorStateProvider class. ReliableCollectionsActorStateProvider is currently in PREVIEW.

public ReliableCollectionsActorStateProvider ();
Public Sub New ()

Applies to

ReliableCollectionsActorStateProvider(ReliableStateManagerConfiguration)

Initializes a new instance of the ReliableCollectionsActorStateProvider class with specified configuration ReliableCollectionsActorStateProvider is currently in PREVIEW.

public ReliableCollectionsActorStateProvider (Microsoft.ServiceFabric.Data.ReliableStateManagerConfiguration stateManagerConfig);
new Microsoft.ServiceFabric.Actors.Runtime.ReliableCollectionsActorStateProvider : Microsoft.ServiceFabric.Data.ReliableStateManagerConfiguration -> Microsoft.ServiceFabric.Actors.Runtime.ReliableCollectionsActorStateProvider
Public Sub New (stateManagerConfig As ReliableStateManagerConfiguration)

Parameters

Applies to

ReliableCollectionsActorStateProvider(ReliableStateManagerConfiguration, Int32, Int32)

Initializes a new instance of the ReliableCollectionsActorStateProvider class with specified configuration ReliableCollectionsActorStateProvider is currently in PREVIEW.

public ReliableCollectionsActorStateProvider (Microsoft.ServiceFabric.Data.ReliableStateManagerConfiguration stateManagerConfig, int actorStateDictionaryCount, int reminderDictionaryCount);
new Microsoft.ServiceFabric.Actors.Runtime.ReliableCollectionsActorStateProvider : Microsoft.ServiceFabric.Data.ReliableStateManagerConfiguration * int * int -> Microsoft.ServiceFabric.Actors.Runtime.ReliableCollectionsActorStateProvider
Public Sub New (stateManagerConfig As ReliableStateManagerConfiguration, actorStateDictionaryCount As Integer, reminderDictionaryCount As Integer)

Parameters

actorStateDictionaryCount
Int32

Number of IReliableDictionary2<TKey,TValue> across which actor states will be partitioned and stored.

reminderDictionaryCount
Int32

Number of IReliableDictionary2<TKey,TValue> across which reminders will be partitioned and stored.

Remarks

Values for actorStateDictionaryCount and reminderDictionaryCount can be specified only once when the Actor Service is created for first time. It cannot be changed after that and ReliableCollectionsActorStateProvider will ignore any values that are different from first time.

Applies to