Module org.eclipse.persistence.core
Interface SequencingHome
public interface SequencingHome
Purpose: Define interface for getting all sequencing interfaces.
Description: This interface accessed through DatabaseSession.getSequencingHome() method.
Responsibilities:
- Provides a hub for all sequencing interfaces used by DatabaseSession.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionbooleanINTERNAL: Indicates whether the object is connected or not.booleanvoidonAddDescriptors(Collection<ClassDescriptor> descriptors) voidINTERNAL: Called when the object is connected (logged in).voidINTERNAL: Called when the object is disconnected (logged out).
-
Method Details
-
getSequencing
Sequencing getSequencing() -
getSequencingControl
SequencingControl getSequencingControl() -
getSequencingServer
SequencingServer getSequencingServer() -
isSequencingCallbackRequired
boolean isSequencingCallbackRequired() -
onAddDescriptors
-
onConnect
void onConnect()INTERNAL: Called when the object is connected (logged in). -
onDisconnect
void onDisconnect()INTERNAL: Called when the object is disconnected (logged out). -
isConnected
boolean isConnected()INTERNAL: Indicates whether the object is connected or not.
-