共用方式為


MultiClusterData 建構函式

定義

多載

MultiClusterData()

建構空的 MultiClusterData。

MultiClusterData(MultiClusterConfiguration)

建構包含多叢集組態的 MultiClusterData。

MultiClusterData(GatewayEntry)

建構包含單一閘道專案的 MultiClusterData。

MultiClusterData(IEnumerable<GatewayEntry>)

建構包含閘道專案集合的 MultiClusterData。

MultiClusterData(IReadOnlyDictionary<SiloAddress,GatewayEntry>, MultiClusterConfiguration)

建構 MultiClusterData,其中包含閘道專案集合和多叢集組態。

MultiClusterData()

建構空的 MultiClusterData。

public MultiClusterData ();
Public Sub New ()

適用於

MultiClusterData(MultiClusterConfiguration)

建構包含多叢集組態的 MultiClusterData。

public MultiClusterData (Orleans.MultiCluster.MultiClusterConfiguration config);
new Orleans.Runtime.MultiClusterNetwork.MultiClusterData : Orleans.MultiCluster.MultiClusterConfiguration -> Orleans.Runtime.MultiClusterNetwork.MultiClusterData
Public Sub New (config As MultiClusterConfiguration)

參數

適用於

MultiClusterData(GatewayEntry)

建構包含單一閘道專案的 MultiClusterData。

public MultiClusterData (Orleans.Runtime.MultiClusterNetwork.GatewayEntry gatewayEntry);
new Orleans.Runtime.MultiClusterNetwork.MultiClusterData : Orleans.Runtime.MultiClusterNetwork.GatewayEntry -> Orleans.Runtime.MultiClusterNetwork.MultiClusterData
Public Sub New (gatewayEntry As GatewayEntry)

參數

gatewayEntry
GatewayEntry

閘道專案

適用於

MultiClusterData(IEnumerable<GatewayEntry>)

建構包含閘道專案集合的 MultiClusterData。

public MultiClusterData (System.Collections.Generic.IEnumerable<Orleans.Runtime.MultiClusterNetwork.GatewayEntry> gatewayEntries);
new Orleans.Runtime.MultiClusterNetwork.MultiClusterData : seq<Orleans.Runtime.MultiClusterNetwork.GatewayEntry> -> Orleans.Runtime.MultiClusterNetwork.MultiClusterData
Public Sub New (gatewayEntries As IEnumerable(Of GatewayEntry))

參數

gatewayEntries
IEnumerable<GatewayEntry>

由 SiloAddress 提供的閘道專案

適用於

MultiClusterData(IReadOnlyDictionary<SiloAddress,GatewayEntry>, MultiClusterConfiguration)

建構 MultiClusterData,其中包含閘道專案集合和多叢集組態。

public MultiClusterData (System.Collections.Generic.IReadOnlyDictionary<Orleans.Runtime.SiloAddress,Orleans.Runtime.MultiClusterNetwork.GatewayEntry> d, Orleans.MultiCluster.MultiClusterConfiguration config);
new Orleans.Runtime.MultiClusterNetwork.MultiClusterData : System.Collections.Generic.IReadOnlyDictionary<Orleans.Runtime.SiloAddress, Orleans.Runtime.MultiClusterNetwork.GatewayEntry> * Orleans.MultiCluster.MultiClusterConfiguration -> Orleans.Runtime.MultiClusterNetwork.MultiClusterData
Public Sub New (d As IReadOnlyDictionary(Of SiloAddress, GatewayEntry), config As MultiClusterConfiguration)

參數

d
IReadOnlyDictionary<SiloAddress,GatewayEntry>

由 SiloAddress 提供的閘道專案

適用於