ilog.server.jcomp
Class TransactionEvent

java.lang.Object
  |
  +--java.util.EventObject
        |
        +--ilog.server.jcomp.TransactionEvent
All Implemented Interfaces:
java.io.Serializable

public class TransactionEvent
extends java.util.EventObject

Event class used for acknowledge or rollback a transaction.

See Also:
Serialized Form

Fields inherited from class java.util.EventObject
source
 
Method Summary
 boolean isAcknowledge()
           
 boolean isCpRollback()
           
 boolean isSvRollback()
           
 
Methods inherited from class java.util.EventObject
getSource, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Method Detail

isAcknowledge

public boolean isAcknowledge()
Returns:
true if acknowledge a transaction committed first by the component, then by the server.

isSvRollback

public boolean isSvRollback()
Returns:
true if roll back a transaction committed by the component but rejected by the server, or aborted by the component in asynchronous roll back mode.

isCpRollback

public boolean isCpRollback()
Returns:
true if locally roll back a transaction aborted by the component.