Skip to content

CALL_ASYNC

Jurek Muszyński edited this page May 24, 2019 · 11 revisions

void CALL_ASYNC(const char *service)

Description

Calls service defined in silgy_svc.cpp with default timeout (ASYNC_DEF_TIMEOUT, currently 60 seconds).

Timeout refers to the maximum time the engine will be waiting for a response, and not to the CALL_ASYNC itself, as it places request in the message queue opened in non-blocking mode and returns immediately.

How Silgy ASYNC works

Returns

None

Example

CALL_ASYNC("getCustomer");

Notes

Requires ASYNC compilation switch.

Clone this wiki locally