From 248ec5dafada74c829dbe197888166c5807e22e2 Mon Sep 17 00:00:00 2001 From: Jose Bollo Date: Thu, 11 Jul 2019 18:20:23 +0200 Subject: afb-evt: send events in separate job Sending events in the context of the calling process had the consequence that the ordering of the messages had to be removed (see SPEC-2215 & SPEC-2219). This was not good by nature and lead to issues SPEC-2542 and SPEC-2599. Sending events in the context of the calling process also implies to delay the calling process. For this reasons, sending events is now done in an other jobs. For that reason, the count of allowed pending jobs is increased to 100 (was 50). Bug-AGL: SPEC-2215 Bug-AGL: SPEC-2219 Bug-AGL: SPEC-2542 Bug-AGL: SPEC-2599 Change-Id: I5b56d952cc187b65ad6eb9344ad74e5e8d3b7540 Signed-off-by: Jose Bollo --- docs/reference-v3/func-api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/reference-v3/func-api.md') diff --git a/docs/reference-v3/func-api.md b/docs/reference-v3/func-api.md index 454bc0f6..66dd4c9d 100644 --- a/docs/reference-v3/func-api.md +++ b/docs/reference-v3/func-api.md @@ -428,7 +428,7 @@ int afb_api_queue_job( * @param name the event name suffix * @param object the object that comes with the event * - * @return the count of clients that received the event. + * @return 0 in case of success or -1 in case of error */ int afb_api_broadcast_event( afb_api_t api, -- cgit 1.2.3-korg