Behaviours: gen_fsm.
| code_change/4 | |
| exchange/2 | |
| exchange/3 | |
| handle_event/3 | |
| handle_info/3 | |
| handle_sync_event/4 | |
| init/1 | |
| prepare/2 | |
| prepare/3 | |
| start/2 | Start an exchange of Cluster Metadata hashtrees between this node
and Peer. |
| terminate/3 | |
| update/2 | |
| update/3 |
code_change(OldVsn, StateName, State, Extra) -> any()
exchange(X1, State) -> any()
exchange(Event, From, State) -> any()
handle_event(Event, StateName, State) -> any()
handle_info(Info, StateName, State) -> any()
handle_sync_event(Event, From, StateName, State) -> any()
init(X1) -> any()
prepare(X1, State) -> any()
prepare(Event, From, State) -> any()
start(Peer::node(), Timeout::pos_integer()) -> {ok, pid()} | ignore | {error, term()}
Start an exchange of Cluster Metadata hashtrees between this node
and Peer. Timeout is the number of milliseconds the process will wait
to aqcuire the remote lock or to upate both trees.
terminate(Reason, StateName, State) -> any()
update(X1, State) -> any()
update(Event, From, State) -> any()
Generated by EDoc