Szerkesztés

Megosztás a következőn keresztül:


AzureClient.Initialize Method

Definition

Overloads

Initialize()

Initialise the Orleans client runtime in this Azure process

Initialize(ClientConfiguration)

Initializes the Orleans client runtime in this Azure process from the provided client configuration object. If the configuration object is null, the initialization fails.

Initialize(FileInfo)

Initialise the Orleans client runtime in this Azure process

Initialize(String)

Initialise the Orleans client runtime in this Azure process

Initialize()

Initialise the Orleans client runtime in this Azure process

public static void Initialize ();
static member Initialize : unit -> unit
Public Shared Sub Initialize ()

Applies to

Initialize(ClientConfiguration)

Initializes the Orleans client runtime in this Azure process from the provided client configuration object. If the configuration object is null, the initialization fails.

public static void Initialize (Orleans.Runtime.Configuration.ClientConfiguration config);
static member Initialize : Orleans.Runtime.Configuration.ClientConfiguration -> unit
Public Shared Sub Initialize (config As ClientConfiguration)

Parameters

config
ClientConfiguration

A ClientConfiguration object.

Applies to

Initialize(FileInfo)

Initialise the Orleans client runtime in this Azure process

public static void Initialize (System.IO.FileInfo orleansClientConfigFile);
static member Initialize : System.IO.FileInfo -> unit
Public Shared Sub Initialize (orleansClientConfigFile As FileInfo)

Parameters

orleansClientConfigFile
FileInfo

Location of the Orleans client config file to use for base config settings

Remarks

Any silo gateway address specified in the config file is ignored, and gateway endpoint info is read from the silo instance table in Azure storage instead.

Applies to

Initialize(String)

Initialise the Orleans client runtime in this Azure process

public static void Initialize (string clientConfigFilePath);
static member Initialize : string -> unit
Public Shared Sub Initialize (clientConfigFilePath As String)

Parameters

clientConfigFilePath
String

Location of the Orleans client config file to use for base config settings

Remarks

Any silo gateway address specified in the config file is ignored, and gateway endpoint info is read from the silo instance table in Azure storage instead.

Applies to