Interface XSiteStatePushTask
-
public interface XSiteStatePushTask
Sends local cluster state to remote site.- Since:
- 12.0
- Author:
- Pedro Ruivo
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
execute(io.reactivex.rxjava3.core.Flowable<XSiteState> flowable, CompletionStage<Void> delayer)
Perform the state transfer with the state fromFlowable
.
-
-
-
Method Detail
-
execute
void execute(io.reactivex.rxjava3.core.Flowable<XSiteState> flowable, CompletionStage<Void> delayer)
Perform the state transfer with the state fromFlowable
.The
Flowable
can only be iterated afterdelayer
is completed.- Parameters:
flowable
- TheFlowable
with the local cluster state.delayer
- ACompletionStage
which is completed when it is allowed to start sending the state.
-
-