Class TransactionCleanupConfig
Inheritance
TransactionCleanupConfig
Assembly: Couchbase.NetClient.dll
Syntax
[InterfaceStability(Level.Volatile)]
public record TransactionCleanupConfig : IEquatable<TransactionCleanupConfig>
Constructors
|
Edit this page
View Source
TransactionCleanupConfig(TimeSpan?, bool, bool, IEnumerable<KeySpace>?)
Declaration
public TransactionCleanupConfig(TimeSpan? CleanupWindow = null, bool CleanupClientAttempts = true, bool CleanupLostAttempts = true, IEnumerable<KeySpace>? Collections = null)
Parameters
Properties
|
Edit this page
View Source
CleanupClientAttempts
Declaration
public bool CleanupClientAttempts { get; init; }
Property Value
|
Edit this page
View Source
CleanupLostAttempts
Declaration
public bool CleanupLostAttempts { get; init; }
Property Value
|
Edit this page
View Source
CleanupWindow
Declaration
public TimeSpan? CleanupWindow { get; init; }
Property Value
|
Edit this page
View Source
Collections
Declaration
public IEnumerable<KeySpace>? Collections { get; init; }
Property Value
Implements