C# Class Castle.ActiveRecord.TransactionScope

Implementation of ISessionScope to provide transaction semantics
Inheritance: SessionScope
Afficher le fichier Open project: nats/castle-1.0.3-mono Class Usage Examples

Méthodes publiques

Méthode Description
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

Méthodes protégées

Méthode Description
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

Private Methods

Méthode Description
RaiseOnCompleted ( ) : void

Raises the on completed event

Method Details

DiscardSessions() protected méthode

Discards the sessions.
protected DiscardSessions ( ICollection sessions ) : void
sessions ICollection The sessions.
Résultat void

EnsureHasTransaction() protected méthode

Ensures that a transaction exist, creating one if neccecary
protected EnsureHasTransaction ( ISession session ) : void
session ISession The session.
Résultat void

FailSession() public méthode

This is called when a session has a failure
public FailSession ( ISession session ) : void
session ISession the session
Résultat void

GetSession() public méthode

This method should return the session instance associated with the key.
public GetSession ( object key ) : ISession
key object an object instance
Résultat ISession

Initialize() protected méthode

Initializes the current transaction scope using the session
protected Initialize ( ISession session ) : void
session ISession The session.
Résultat void

IsKeyKnown() public méthode

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
Résultat bool

PerformDisposal() protected méthode

Dispose of this scope
protected PerformDisposal ( ICollection sessions ) : void
sessions ICollection The sessions.
Résultat void

RegisterSession() public méthode

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
Résultat void

TransactionScope() public méthode

Initializes a new instance of the TransactionScope class.
public TransactionScope ( ) : System
Résultat System

TransactionScope() public méthode

Initializes a new instance of the TransactionScope class.
public TransactionScope ( OnDispose onDisposeBehavior ) : System
onDisposeBehavior OnDispose The on dispose behavior.
Résultat System

TransactionScope() public méthode

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
Résultat System

TransactionScope() public méthode

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.
Résultat System

TransactionScope() public méthode

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.
Résultat System

VoteCommit() public méthode

Votes to commit the transaction
public VoteCommit ( ) : void
Résultat void

VoteRollBack() public méthode

Votes to roll back the transaction
public VoteRollBack ( ) : void
Résultat void