Package oracle.jdbc
Interface LogicalTransactionIdEventListener
-
- All Superinterfaces:
EventListener
public interface LogicalTransactionIdEventListener extends EventListener
A class that is interested in processing Logical Transaction Id events must implement this interface. A listener instance is registered using one of theOracleConnection.addLogicalTransactionIdEventListener
flavors.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onLogicalTransactionIdEvent(LogicalTransactionIdEvent event)
This method is executed whenever the server sends a new Logical Transaction Id event.
-
-
-
Method Detail
-
onLogicalTransactionIdEvent
void onLogicalTransactionIdEvent(LogicalTransactionIdEvent event)
This method is executed whenever the server sends a new Logical Transaction Id event.
-
-