mbed Connector Interface simplification API on top of mbed-client
Fork of mbedConnectorInterfaceV3 by
NOTE:
This repo has been replaced with https://github.com/ARMmbed/mbedConnectorInterface. No further updates will occur with this repo. Please use the github repo instead. Thanks!
Diff: mbed-connector-interface/ConnectionStatusInterface.h
- Revision:
- 46:62da4ce20276
- Parent:
- 33:1d0b855df5a5
- Child:
- 76:7f55e1c0635d
--- a/mbed-connector-interface/ConnectionStatusInterface.h Wed Jun 15 20:51:13 2016 +0000 +++ b/mbed-connector-interface/ConnectionStatusInterface.h Wed Jun 15 22:40:29 2016 +0000 @@ -52,27 +52,32 @@ /** Registered */ - virtual void object_registered(void *ep,void *security,void *data = NULL) = 0; + virtual void object_registered(void *ep,void *security,void *data = NULL); /** Re-registered */ - virtual void registration_updated(void *ep,void *security,void *data = NULL) = 0; + virtual void registration_updated(void *ep,void *security,void *data = NULL); + + /** + Beginning de-registration + */ + virtual void begin_object_unregistering(void *ep); /** De-registered */ - virtual void object_unregistered(void *ep,void *data = NULL) = 0; + virtual void object_unregistered(void *ep,void *data = NULL); /** Bootstrapped */ - virtual void bootstrapped(void *ep,void *data = NULL) = 0; + virtual void bootstrapped(void *ep,void *data = NULL); /** Value Updated */ - virtual void value_updated(void *ep,void *data,int type) = 0; + virtual void value_updated(void *ep,void *data,int type); }; } // namespace Connector