SiloBuilderExtensions.UseTransactions Method

Definition

Overloads

UseTransactions(ISiloBuilder)

Configure cluster to use the distributed TM algorithm

UseTransactions(ISiloBuilder, Boolean)

Configure cluster to use the distributed TM algorithm

UseTransactions(ISiloHostBuilder, Boolean)

Configure cluster to use the distributed TM algorithm

UseTransactions(ISiloBuilder)

Configure cluster to use the distributed TM algorithm

public static Orleans.Hosting.ISiloBuilder UseTransactions (this Orleans.Hosting.ISiloBuilder builder);
static member UseTransactions : Orleans.Hosting.ISiloBuilder -> Orleans.Hosting.ISiloBuilder
<Extension()>
Public Function UseTransactions (builder As ISiloBuilder) As ISiloBuilder

Parameters

builder
ISiloBuilder

Silo host builder

Applies to

UseTransactions(ISiloBuilder, Boolean)

Source:
SiloBuilderExtensions.cs

Configure cluster to use the distributed TM algorithm

public static Orleans.Hosting.ISiloBuilder UseTransactions (this Orleans.Hosting.ISiloBuilder builder, bool withStatisticsReporter = true);
static member UseTransactions : Orleans.Hosting.ISiloBuilder * bool -> Orleans.Hosting.ISiloBuilder
<Extension()>
Public Function UseTransactions (builder As ISiloBuilder, Optional withStatisticsReporter As Boolean = true) As ISiloBuilder

Parameters

builder
ISiloBuilder

Silo host builder

withStatisticsReporter
Boolean

Configure a transaction statistics reporter. Set to false if you want to configure your own transaction statistics reporting or don't want transaction statistics reported

Applies to

UseTransactions(ISiloHostBuilder, Boolean)

Source:
SiloBuilderExtensions.cs

Configure cluster to use the distributed TM algorithm

public static Orleans.Hosting.ISiloHostBuilder UseTransactions (this Orleans.Hosting.ISiloHostBuilder builder, bool withStatisticsReporter = true);
static member UseTransactions : Orleans.Hosting.ISiloHostBuilder * bool -> Orleans.Hosting.ISiloHostBuilder
<Extension()>
Public Function UseTransactions (builder As ISiloHostBuilder, Optional withStatisticsReporter As Boolean = true) As ISiloHostBuilder

Parameters

builder
ISiloHostBuilder

Silo host builder

withStatisticsReporter
Boolean

Configure a transaction statistics reporter. Set to false if you want to configure your own transaction statistics reporting or don't want transaction statistics reported

Applies to