C# Класс Castle.ActiveRecord.TransactionScope

Implementation of ISessionScope to provide transaction semantics
Наследование: SessionScope
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
FailSession ( ISession session ) : void

This is called when a session has a failure

GetSession ( object key ) : ISession

This method should return the session instance associated with the key.

IsKeyKnown ( object key ) : bool

This method is invoked when the Castle.ActiveRecord.Framework.ISessionFactoryHolder instance needs a session instance. Instead of creating one it interrogates the active scope for one. The scope implementation must check if it has a session registered for the given key. RegisterSession

RegisterSession ( object key, ISession session ) : void

This method is invoked when no session was available at and the Castle.ActiveRecord.Framework.ISessionFactoryHolder just created one. So it registers the session created within this scope using a key. The scope implementation shouldn't make any assumption on what the key actually is as we reserve the right to change it IsKeyKnown

TransactionScope ( ) : System

Initializes a new instance of the TransactionScope class.

TransactionScope ( OnDispose onDisposeBehavior ) : System

Initializes a new instance of the TransactionScope class.

TransactionScope ( TransactionMode mode ) : System

Initializes a new instance of the TransactionScope class.

TransactionScope ( TransactionMode mode, IsolationLevel isolationLevel, OnDispose onDisposeBehavior ) : System

Initializes a new instance of the TransactionScope class.

TransactionScope ( TransactionMode mode, OnDispose onDisposeBehavior ) : System

Initializes a new instance of the TransactionScope class.

VoteCommit ( ) : void

Votes to commit the transaction

VoteRollBack ( ) : void

Votes to roll back the transaction

Защищенные методы

Метод Описание
DiscardSessions ( ICollection sessions ) : void

Discards the sessions.

EnsureHasTransaction ( ISession session ) : void

Ensures that a transaction exist, creating one if neccecary

Initialize ( ISession session ) : void

Initializes the current transaction scope using the session

PerformDisposal ( ICollection sessions ) : void

Dispose of this scope

Приватные методы

Метод Описание
RaiseOnCompleted ( ) : void

Raises the on completed event

Описание методов

DiscardSessions() защищенный Метод

Discards the sessions.
protected DiscardSessions ( ICollection sessions ) : void
sessions ICollection The sessions.
Результат void

EnsureHasTransaction() защищенный Метод

Ensures that a transaction exist, creating one if neccecary
protected EnsureHasTransaction ( ISession session ) : void
session ISession The session.
Результат void

FailSession() публичный Метод

This is called when a session has a failure
public FailSession ( ISession session ) : void
session ISession the session
Результат void

GetSession() публичный Метод

This method should return the session instance associated with the key.
public GetSession ( object key ) : ISession
key object an object instance
Результат ISession

Initialize() защищенный Метод

Initializes the current transaction scope using the session
protected Initialize ( ISession session ) : void
session ISession The session.
Результат void

IsKeyKnown() публичный Метод

This method is invoked when the Castle.ActiveRecord.Framework.ISessionFactoryHolder instance needs a session instance. Instead of creating one it interrogates the active scope for one. The scope implementation must check if it has a session registered for the given key. RegisterSession
public IsKeyKnown ( object key ) : bool
key object an object instance
Результат bool

PerformDisposal() защищенный Метод

Dispose of this scope
protected PerformDisposal ( ICollection sessions ) : void
sessions ICollection The sessions.
Результат void

RegisterSession() публичный Метод

This method is invoked when no session was available at and the Castle.ActiveRecord.Framework.ISessionFactoryHolder just created one. So it registers the session created within this scope using a key. The scope implementation shouldn't make any assumption on what the key actually is as we reserve the right to change it IsKeyKnown
public RegisterSession ( object key, ISession session ) : void
key object an object instance
session ISession An instance of ISession
Результат void

TransactionScope() публичный Метод

Initializes a new instance of the TransactionScope class.
public TransactionScope ( ) : System
Результат System

TransactionScope() публичный Метод

Initializes a new instance of the TransactionScope class.
public TransactionScope ( OnDispose onDisposeBehavior ) : System
onDisposeBehavior OnDispose The on dispose behavior.
Результат System

TransactionScope() публичный Метод

Initializes a new instance of the TransactionScope class.
public TransactionScope ( TransactionMode mode ) : System
mode TransactionMode Whatever to create a new transaction or inherits an existing one
Результат System

TransactionScope() публичный Метод

Initializes a new instance of the TransactionScope class.
public TransactionScope ( TransactionMode mode, IsolationLevel isolationLevel, OnDispose onDisposeBehavior ) : System
mode TransactionMode Whatever to create a new transaction or inherits an existing one
isolationLevel IsolationLevel The transaction isolation level.
onDisposeBehavior OnDispose The on dispose behavior.
Результат System

TransactionScope() публичный Метод

Initializes a new instance of the TransactionScope class.
public TransactionScope ( TransactionMode mode, OnDispose onDisposeBehavior ) : System
mode TransactionMode Whatever to create a new transaction or inherits an existing one
onDisposeBehavior OnDispose The on dispose behavior.
Результат System

VoteCommit() публичный Метод

Votes to commit the transaction
public VoteCommit ( ) : void
Результат void

VoteRollBack() публичный Метод

Votes to roll back the transaction
public VoteRollBack ( ) : void
Результат void