quorum_dispatch (3) Linux Manual Page
quorum_dispatch – Dispatches callbacks from the quorum service
Synopsis
#include <corosync/quorum.h>
int quorum_dispatch(quorum_handle_t handle, cs_dispatch_flags_t *dispatch_types);
Description
The quorum_dispatch function is used to dispatch configuration changes. Each application may have several connections to the quorum 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
quorum_overview(8),quorum_initialize(3),quorum_finalize(3),quorum_getquorate(3),quorum_trackstart(3),quorum_trackstop(3),quorum_fd_get(3),quorum_context_set(3),quorum_context_get(3)
