Interface SequencingHome
-
public interface SequencingHomePurpose: 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.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SequencinggetSequencing()SequencingControlgetSequencingControl()SequencingServergetSequencingServer()booleanisConnected()INTERNAL: Indicates whether the object is connected or not.booleanisSequencingCallbackRequired()voidonAddDescriptors(java.util.Collection descriptors)voidonConnect()INTERNAL: Called when the object is connected (logged in).voidonDisconnect()INTERNAL: Called when the object is disconnected (logged out).
-
-
-
Method Detail
-
getSequencing
Sequencing getSequencing()
-
getSequencingControl
SequencingControl getSequencingControl()
-
getSequencingServer
SequencingServer getSequencingServer()
-
isSequencingCallbackRequired
boolean isSequencingCallbackRequired()
-
onAddDescriptors
void onAddDescriptors(java.util.Collection descriptors)
-
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.
-
-