Redigera

Dela via


TestClusterOptions Constructors

Definition

Overloads

TestClusterOptions()

Initializes a new instance of TestClusterOptions using the default ExtendedFallbackOptions specified by DefaultExtendedConfiguration.

TestClusterOptions(IConfiguration)

Initializes a new instance of TestClusterOptions using the specified configuration.

TestClusterOptions(TestClusterOptions+FallbackOptions)

Initializes a new instance of TestClusterOptions.

TestClusterOptions(Int16)

Initializes a new instance of TestClusterOptions overriding the initial silos count and using the default ExtendedFallbackOptions specified by DefaultExtendedConfiguration.

TestClusterOptions()

Source:
TestClusterOptions.cs

Initializes a new instance of TestClusterOptions using the default ExtendedFallbackOptions specified by DefaultExtendedConfiguration.

public TestClusterOptions ();
Public Sub New ()

Applies to

TestClusterOptions(IConfiguration)

Initializes a new instance of TestClusterOptions using the specified configuration.

public TestClusterOptions (Microsoft.Extensions.Configuration.IConfiguration extendedConfiguration);
new Orleans.TestingHost.TestClusterOptions : Microsoft.Extensions.Configuration.IConfiguration -> Orleans.TestingHost.TestClusterOptions
Public Sub New (extendedConfiguration As IConfiguration)

Parameters

extendedConfiguration
IConfiguration

Configuration that can be bound to an instance of ExtendedFallbackOptions.

Applies to

TestClusterOptions(TestClusterOptions+FallbackOptions)

Initializes a new instance of TestClusterOptions.

public TestClusterOptions (Orleans.TestingHost.TestClusterOptions.FallbackOptions extendedFallbackOptions);
new Orleans.TestingHost.TestClusterOptions : Orleans.TestingHost.TestClusterOptions.FallbackOptions -> Orleans.TestingHost.TestClusterOptions
Public Sub New (extendedFallbackOptions As TestClusterOptions.FallbackOptions)

Parameters

extendedFallbackOptions
TestClusterOptions.FallbackOptions

Fallback options to use when they are not explicitly specified in the ClusterConfiguration.

Applies to

TestClusterOptions(Int16)

Initializes a new instance of TestClusterOptions overriding the initial silos count and using the default ExtendedFallbackOptions specified by DefaultExtendedConfiguration.

public TestClusterOptions (short initialSilosCount);
new Orleans.TestingHost.TestClusterOptions : int16 -> Orleans.TestingHost.TestClusterOptions
Public Sub New (initialSilosCount As Short)

Parameters

initialSilosCount
Int16

The number of initial silos to deploy.

Applies to