Table of Contents

Interface ITransaction

Namespace
Apache.Ignite.Transactions
Assembly
Apache.Ignite.dll

Ignite transaction.

Use BeginAsync() to start a new transaction.
public interface ITransaction : IAsyncDisposable, IDisposable
Inherited Members

Properties

IsReadOnly

Gets a value indicating whether this transaction is read-only.

bool IsReadOnly { get; }

Property Value

bool

Methods

CommitAsync()

Commits the transaction.

Task CommitAsync()

Returns

Task

A Task representing the asynchronous operation.

RollbackAsync()

Rolls back the transaction.

Task RollbackAsync()

Returns

Task

A Task representing the asynchronous operation.