Qore DataProvider Module Reference 2.7.3
|
Variables | |
const | DataProvider::MSG_Async = "ASYNC" |
Asynchronous output type, output can happen any time. More... | |
const | DataProvider::MSG_None = "NONE" |
const | DataProvider::MSG_Sync = "SYNC" |
Synchronous output type, an output message is expected after each observed event. More... | |
These constants describe the data provider's support for output messages, if any, and the relationship to observed events, if any.
const DataProvider::MSG_Async = "ASYNC" |
Asynchronous output type, output can happen any time.
Input (i.e. observed events) may not be related or supported
const DataProvider::MSG_None = "NONE" |
No output type The data provider does not support output messages
const DataProvider::MSG_Sync = "SYNC" |
Synchronous output type, an output message is expected after each observed event.
The data provider supports output messages, and an output message is expected after each input message.
This can be used to support the server-side request-response API integration pattern