Interface XSiteStatePushTask
public interface XSiteStatePushTask
Sends local cluster state to remote site.
- Since:
- 12.0
- Author:
- Pedro Ruivo
-
Method Summary
Modifier and TypeMethodDescriptionvoid
execute
(io.reactivex.rxjava3.core.Flowable<XSiteState> flowable, CompletionStage<Void> delayer) Perform the state transfer with the state fromFlowable
.
-
Method Details
-
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.
-