Szerkesztés

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


GlobalConfiguration.RegisterLogConsistencyProvider Method

Definition

Overloads

RegisterLogConsistencyProvider(String, String, IDictionary<String,String>)

Registers a given log-consistency provider.

RegisterLogConsistencyProvider<T>(String, IDictionary<String,String>)

Registers a given type of T where T is a log-consistency provider

RegisterLogConsistencyProvider(String, String, IDictionary<String,String>)

Registers a given log-consistency provider.

public void RegisterLogConsistencyProvider (string providerTypeFullName, string providerName, System.Collections.Generic.IDictionary<string,string> properties = default);
member this.RegisterLogConsistencyProvider : string * string * System.Collections.Generic.IDictionary<string, string> -> unit
Public Sub RegisterLogConsistencyProvider (providerTypeFullName As String, providerName As String, Optional properties As IDictionary(Of String, String) = Nothing)

Parameters

providerTypeFullName
String

Full name of the log-consistency provider type

providerName
String

Name of the log-consistency provider

properties
IDictionary<String,String>

Properties that will be passed to the log-consistency provider upon initialization

Applies to

RegisterLogConsistencyProvider<T>(String, IDictionary<String,String>)

Registers a given type of T where T is a log-consistency provider

public void RegisterLogConsistencyProvider<T> (string providerName, System.Collections.Generic.IDictionary<string,string> properties = default) where T : Orleans.LogConsistency.ILogConsistencyProvider;
member this.RegisterLogConsistencyProvider : string * System.Collections.Generic.IDictionary<string, string> -> unit (requires 'T :> Orleans.LogConsistency.ILogConsistencyProvider)
Public Sub RegisterLogConsistencyProvider(Of T As ILogConsistencyProvider) (providerName As String, Optional properties As IDictionary(Of String, String) = Nothing)

Type Parameters

T

Non-abstract type which implements ILogConsistencyProvider a log-consistency storage interface

Parameters

providerName
String

Name of the log-consistency provider

properties
IDictionary<String,String>

Properties that will be passed to log-consistency provider upon initialization

Applies to