Uses of Interface
org.objectweb.transaction.api.event.Event

Packages that use Event
org.objectweb.transaction.api.event Specification of the Event API.  
org.objectweb.transaction.api.lock Specification of the Lock API.  
org.objectweb.transaction.api.resource Specification of the Resource API.  
org.objectweb.transaction.api.synchronization Specification of the Synchronization API.  
org.objectweb.transaction.api.transaction Specification of the Transaction API.  
org.objectweb.transaction.lib.resource Description of the Resource library.  
org.objectweb.transaction.lib.synchronization Description of the Synchronization library.  
org.objectweb.transaction.lib.transaction Description of the Transaction library.  
 

Uses of Event in org.objectweb.transaction.api.event
 

Methods in org.objectweb.transaction.api.event that return Event
 Event EventContext.getEvent()
           
 

Methods in org.objectweb.transaction.api.event with parameters of type Event
 EventNotificationFeature[] EventListenerFeature.getListeners(Event evt)
          Provides the list of EventNotificationFeature registered for the specified Event type.
 void EventEnlistmentFeature.enlist(Event evt, EventNotificationFeature hdl)
          Enlist an EventNotificationFeature interface as handler for the specified Event.
 void EventEnlistmentFeature.delist(Event evt, EventNotificationFeature hdl)
          Delist an EventNotificationFeature interface as handler for the specified Event.
 

Uses of Event in org.objectweb.transaction.api.lock
 

Subinterfaces of Event in org.objectweb.transaction.api.lock
 interface LockMode
          Particular Event dealing with different kind of lock mode.
 

Uses of Event in org.objectweb.transaction.api.resource
 

Subinterfaces of Event in org.objectweb.transaction.api.resource
 interface ResourceEvent
          Root Interface for Events of a Resource
 

Uses of Event in org.objectweb.transaction.api.synchronization
 

Subinterfaces of Event in org.objectweb.transaction.api.synchronization
 interface SynchronizationEvent
          Root interface for derived synchronization events.
 

Uses of Event in org.objectweb.transaction.api.transaction
 

Subinterfaces of Event in org.objectweb.transaction.api.transaction
 interface TransactionStatus
          Description of the status of a transaction
 

Uses of Event in org.objectweb.transaction.lib.resource
 

Classes in org.objectweb.transaction.lib.resource that implement Event
 class ResourceEventCommit
          ResourceEvent for the commit operation.
 class ResourceEventRollback
          ResourceEvent representing the rollback operation.
 class ResourceEventVote
          ResourceEvent for the prepare operation.
 

Methods in org.objectweb.transaction.lib.resource that return Event
 Event ResourceEventContext.getEvent()
          Provides the instance of the associated event.
 

Uses of Event in org.objectweb.transaction.lib.synchronization
 

Classes in org.objectweb.transaction.lib.synchronization that implement Event
 class SynchronizationEventAfterCompletion
          SynchronizationEvent raised after the completion.
 class SynchronizationEventBeforeCompletion
          SynchronizationEvent raised before the completion.
 

Uses of Event in org.objectweb.transaction.lib.transaction
 

Classes in org.objectweb.transaction.lib.transaction that implement Event
 class TransactionStatusCommitted
          TransactionStatus after the completion of the transaction.
 class TransactionStatusCommitting
          TransactionStatus during the completion of the transaction.
 class TransactionStatusMarkedRollback
          TransactionStatus when transaction is marked for rollback.
 class TransactionStatusNoTransaction
          TransactionStatus when no transaction is active.
 class TransactionStatusPrepared
          TransactionStatus after the first step of the validation process.
 class TransactionStatusPreparing
          TransactionStatus during the first step of the validation process.
 class TransactionStatusRolledBack
          TransactionStatus after the completion of the transaction.
 class TransactionStatusRollingBack
          TransactionStatus during the completion of the transaction.
 class TransactionStatusTransactionActive
          TransactionStatus during the activity of the transaction.
 class TransactionStatusUnknown
          TransactionStatus when the transaction is in an unknown state.