aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAng Li <angli@google.com>2018-01-12 11:54:03 -0800
committerGitHub <noreply@github.com>2018-01-12 11:54:03 -0800
commitc2d947efa173968571cbcc11376159647a9ff356 (patch)
treec8e06f22c7dffb5ffed4f7824120fb0dff8a5354 /README.md
parent4d02684ade1a312b39591a94a92328dc0b65b883 (diff)
downloadmobly-snippet-lib-c2d947efa173968571cbcc11376159647a9ff356.tar.gz
Support custom converters of non-primitive types. (#86)
Now users can supply custom logic for object serialization/de-serialization through a centralized class, and snippet lib will automatically use the custom converters. Added a new example to demonstrate this feature.
Diffstat (limited to 'README.md')
-rw-r--r--README.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/README.md b/README.md
index 7e13f84..99aec9e 100644
--- a/README.md
+++ b/README.md
@@ -61,3 +61,6 @@ mobly snippet lib along with detailed tutorials.
* [ex5_schedule_rpc](examples/ex5_schedule_rpc): Example of how to use the
'scheduleRpc' RPC to execute another RPC at a later time, potentially after
device disconnection.
+* [ex6_complex_type_conversion](examples/ex6_complex_type_conversion): Example of how to pass a
+ non-primitive type to the Rpc methods and return non-primitive type from Rpc methods by
+ supplying a type converter.