ReliableCollectionsActorStateProvider Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- stateManagerConfig
- ReliableStateManagerConfiguration
A ReliableStateManagerConfiguration that describes IReliableStateManager configuration.
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
- stateManagerConfig
- ReliableStateManagerConfiguration
A ReliableStateManagerConfiguration that describes IReliableStateManager configuration.
- 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
Azure SDK for .NET