Click or drag to resize

ITransactionalStorage Interface

Interface for storage providers which have controllable transactions.

Namespace:  VDS.RDF.Storage
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public interface ITransactionalStorage

The ITransactionalStorage type exposes the following members.

Methods
  NameDescription
Public methodBegin
Begins a transaction.
Public methodCommit
Commits a transaction.
Public methodRollback
Rolls back a transaction.
Top
Remarks

It is up to the implementation whether transactions are per-thread or global and how transactions interact with operations performed on the storage provider. Please see individual implementations for notes on how transactions are implemented.

See Also