你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

KeyValueStoreReplica 构造函数

定义

重载

KeyValueStoreReplica(String)

使用指定的键/值存储名称初始化 类的新实例 KeyValueStoreReplica

KeyValueStoreReplica(String, LocalStoreSettings)

使用指定的键/值存储名称和本地存储设置初始化 类的新实例 KeyValueStoreReplica

KeyValueStoreReplica(String, ReplicatorSettings)

使用指定的键/值存储名称和存储复制器设置初始化 类的新实例 KeyValueStoreReplica

KeyValueStoreReplica(String, LocalStoreSettings, ReplicatorSettings)

使用指定的键/值存储名称、本地存储设置和复制器设置初始化 类的新实例 KeyValueStoreReplica

KeyValueStoreReplica(String, LocalStoreSettings, ReplicatorSettings, KeyValueStoreReplica+SecondaryNotificationMode)

使用指定的键/值存储名称、本地存储设置和复制器设置初始化 类的新实例 KeyValueStoreReplica 。 辅助副本 (replica) 通知通过通知模式启用。

KeyValueStoreReplica(String, LocalStoreSettings, ReplicatorSettings, KeyValueStoreReplicaSettings)

使用指定的键/值存储名称、本地存储设置、复制程序设置和副本 (replica) 设置初始化 KeyValueStoreReplica 类的新实例。

KeyValueStoreReplica(String)

使用指定的键/值存储名称初始化 类的新实例 KeyValueStoreReplica

public KeyValueStoreReplica (string storeName);
new System.Fabric.KeyValueStoreReplica : string -> System.Fabric.KeyValueStoreReplica
Public Sub New (storeName As String)

参数

storeName
String

键/值存储区的名称。

注解

存储名称应符合有效的文件名字符。

适用于

KeyValueStoreReplica(String, LocalStoreSettings)

使用指定的键/值存储名称和本地存储设置初始化 类的新实例 KeyValueStoreReplica

public KeyValueStoreReplica (string storeName, System.Fabric.LocalStoreSettings localStoreSettings);
new System.Fabric.KeyValueStoreReplica : string * System.Fabric.LocalStoreSettings -> System.Fabric.KeyValueStoreReplica
Public Sub New (storeName As String, localStoreSettings As LocalStoreSettings)

参数

storeName
String

键/值存储区的名称。

localStoreSettings
LocalStoreSettings

本地存储的可选设置。

适用于

KeyValueStoreReplica(String, ReplicatorSettings)

使用指定的键/值存储名称和存储复制器设置初始化 类的新实例 KeyValueStoreReplica

public KeyValueStoreReplica (string storeName, System.Fabric.ReplicatorSettings replicatorSettings);
new System.Fabric.KeyValueStoreReplica : string * System.Fabric.ReplicatorSettings -> System.Fabric.KeyValueStoreReplica
Public Sub New (storeName As String, replicatorSettings As ReplicatorSettings)

参数

storeName
String

键/值存储区的名称。

replicatorSettings
ReplicatorSettings

键/值存储复制器的选项设置。

注解

存储名称应符合有效的文件名字符。

适用于

KeyValueStoreReplica(String, LocalStoreSettings, ReplicatorSettings)

使用指定的键/值存储名称、本地存储设置和复制器设置初始化 类的新实例 KeyValueStoreReplica

public KeyValueStoreReplica (string storeName, System.Fabric.LocalStoreSettings localStoreSettings, System.Fabric.ReplicatorSettings replicatorSettings);
new System.Fabric.KeyValueStoreReplica : string * System.Fabric.LocalStoreSettings * System.Fabric.ReplicatorSettings -> System.Fabric.KeyValueStoreReplica
Public Sub New (storeName As String, localStoreSettings As LocalStoreSettings, replicatorSettings As ReplicatorSettings)

参数

storeName
String

键/值存储区的名称。

localStoreSettings
LocalStoreSettings

本地存储的可选设置。

replicatorSettings
ReplicatorSettings

键/值存储复制器的选项设置。

适用于

KeyValueStoreReplica(String, LocalStoreSettings, ReplicatorSettings, KeyValueStoreReplica+SecondaryNotificationMode)

使用指定的键/值存储名称、本地存储设置和复制器设置初始化 类的新实例 KeyValueStoreReplica 。 辅助副本 (replica) 通知通过通知模式启用。

public KeyValueStoreReplica (string storeName, System.Fabric.LocalStoreSettings localStoreSettings, System.Fabric.ReplicatorSettings replicatorSettings, System.Fabric.KeyValueStoreReplica.SecondaryNotificationMode notificationMode);
new System.Fabric.KeyValueStoreReplica : string * System.Fabric.LocalStoreSettings * System.Fabric.ReplicatorSettings * System.Fabric.KeyValueStoreReplica.SecondaryNotificationMode -> System.Fabric.KeyValueStoreReplica
Public Sub New (storeName As String, localStoreSettings As LocalStoreSettings, replicatorSettings As ReplicatorSettings, notificationMode As KeyValueStoreReplica.SecondaryNotificationMode)

参数

storeName
String

键/值存储区的名称。

localStoreSettings
LocalStoreSettings

本地存储的可选设置。

replicatorSettings
ReplicatorSettings

键/值存储复制器的选项设置。

适用于

KeyValueStoreReplica(String, LocalStoreSettings, ReplicatorSettings, KeyValueStoreReplicaSettings)

使用指定的键/值存储名称、本地存储设置、复制程序设置和副本 (replica) 设置初始化 KeyValueStoreReplica 类的新实例。

public KeyValueStoreReplica (string storeName, System.Fabric.LocalStoreSettings localStoreSettings, System.Fabric.ReplicatorSettings replicatorSettings, System.Fabric.KeyValueStoreReplicaSettings kvsSettings);
new System.Fabric.KeyValueStoreReplica : string * System.Fabric.LocalStoreSettings * System.Fabric.ReplicatorSettings * System.Fabric.KeyValueStoreReplicaSettings -> System.Fabric.KeyValueStoreReplica
Public Sub New (storeName As String, localStoreSettings As LocalStoreSettings, replicatorSettings As ReplicatorSettings, kvsSettings As KeyValueStoreReplicaSettings)

参数

storeName
String

键/值存储区的名称。

localStoreSettings
LocalStoreSettings

本地存储的可选设置。

replicatorSettings
ReplicatorSettings

键/值存储复制器的可选设置。

kvsSettings
KeyValueStoreReplicaSettings

键/值存储副本 (replica) 的可选设置。

适用于