summaryrefslogtreecommitdiffstats
path: root/docs/afb-migration-to-binding-v3.md
diff options
context:
space:
mode:
authorJose Bollo <jose.bollo@iot.bzh>2018-08-20 14:44:31 +0200
committerJose Bollo <jose.bollo@iot.bzh>2018-08-20 14:44:31 +0200
commit6492d061bf5753bb3bb67b771fc2f9ce0c910c2b (patch)
tree1b8f7c267e8028934ec5cf8e8965deb98c662423 /docs/afb-migration-to-binding-v3.md
parent57a4177d8d0f5c0bbc88f18a4d593f7cf2c8ba55 (diff)
Provide functions afb_service_call[_sync]_legacy
These functions was missing and the documentation was erronous. This fixes that issue by providing the missing functions and updating the documentation. Bug-AGL: SPEC-1669 Change-Id: I543b0fbe29370be6f35f15ca3bfa48fef9ab4055 Signed-off-by: Jose Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'docs/afb-migration-to-binding-v3.md')
-rw-r--r--docs/afb-migration-to-binding-v3.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/afb-migration-to-binding-v3.md b/docs/afb-migration-to-binding-v3.md
index f7e09fd9..29ea1790 100644
--- a/docs/afb-migration-to-binding-v3.md
+++ b/docs/afb-migration-to-binding-v3.md
@@ -180,6 +180,16 @@ of the context and event subscriptions. The new design allows you to specify:
See [calls](reference-v3/func-api/#calls-and-job-functions) and
[subcalls](reference-v3/func-req/#subcall-functions).
+The table below list the changes to apply:
+
+| Name in Version 2 | New name of Version 3
+|:----------------------:|:----------------------------------------------------:
+| afb_req_subcall | afb_req_subcall_legacy
+| afb_req_subcall_sync | afb_req_subcall_sync_legacy
+| afb_service_call | afb_service_call_legacy
+| afb_service_call_sync | afb_service_call_sync_legacy
+| afb_req_subcall_req | afb_req_subcall_req (same but obsolete)
+
Consider use of event handlers
------------------------------