votequorum_dispatch (3) Linux Manual Page
votequorum_dispatch – Dispatches callbacks from the votequorum service
Synopsis
#include <corosync/votequorum.h>
int votequorum_dispatch(votequorum_handle_t handle, cs_dispatch_flags_t *dispatch_types);
Description
The votequorum_dispatch function is used to dispatch configuration changes. Each application may have several connections to the votequorum API. Each application uses the handle argument to uniquely identify the connection. The dispatch_types argument is used to identify the type of dispatch to execute. The possible types are defined by the structure: The dispatch values have the following meanings:
CS_DISPATCH_ONE- Dispatch at least one callback, blocking until the callback is dispatched.
CS_DISPATCH_ALL- Dispatch all waiting callbacks without blocking to wait for any callbacks.
CS_DISPATCH_BLOCKING- Dispatch all callbacks blocking indefinitely. This is used in a threaded program where a thread is created, and then quorum_dispatch() is called immediately from the created thread to execute callbacks.
CS_DISPATCH_ONE_NONBLOCKING- Dispatch at most one callback. If there is no pending callback, CS_ERR_TRY_AGAIN is returned.
Return Value
This call returns the CS_OK value if successful, otherwise an error is returned.
Errors
CS_ERR_TRY_AGAINResource temporarily unavailableCS_ERR_INVALID_PARAMInvalid argumentCS_ERR_ACCESSPermission deniedCS_ERR_LIBRARYThe connection failedCS_ERR_INTERRUPTSystem call inturrupted by a signalCS_ERR_NOT_SUPPORTEDThe requested protocol/functuality not supportedCS_ERR_MESSAGE_ERRORIncorrect auth message receivedCS_ERR_NO_MEMORYNot enough memory to completed the requested taskSee Also
votequorum_overview(8),votequorum_initialize(3),votequorum_finalize(3),votequorum_getinfo(3),votequorum_trackstart(3),votequorum_trackstop(3),votequorum_fd_get(3),votequorum_context_set(3),votequorum_context_get(3),votequorum_setexpected(3),votequorum_setvotes(3)
