Interface CoordinationSignalListener
-
- All Known Implementing Classes:
CoordinatedImportCoordinator
public interface CoordinationSignalListenerA listener interface that receives coordination signals. It works in cooperation withCoordinatedTransportExtensionto enable coordinated write
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonImportReady(java.lang.String jobId)The method is called when the write coordinator, i.e.voidonStageReady(java.lang.String jobId)The method is called when the write coordinator, i.e.
-
-
-
Method Detail
-
onStageReady
void onStageReady(java.lang.String jobId)
The method is called when the write coordinator, i.e. implementation ofCoordinatedTransportExtension, decides that it is ready to stage SSTable bundles on all participating clusters.- Parameters:
jobId- the unique identifier for the job
-
onImportReady
void onImportReady(java.lang.String jobId)
The method is called when the write coordinator, i.e. implementation ofCoordinatedTransportExtension, decides that it is ready to apply/import SSTables on all participating clusters.- Parameters:
jobId- the unique identifier for the job
-
-