use TCP to connect to mbed connector
Fork of mbedConnectorInterfaceWithDM by
Diff: mbed-connector-interface/ConnectionStatusInterface.h
- Revision:
- 27:b8aaf7dc7023
- Child:
- 33:1d0b855df5a5
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed-connector-interface/ConnectionStatusInterface.h Tue Jun 14 04:01:34 2016 +0000 @@ -0,0 +1,71 @@ +/** + * @file ConnectionStatusInterface.h + * @brief ConnectionStatusInterface (header) + * @author Doug Anson + * @version 1.0 + * @see + * + * Copyright (c) 2014 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + + #ifndef __CONNECTION_STATUS_INTERFACE_H__ + #define __CONNECTION_STATUS_INTERFACE_H__ + + // mbed API + #include "mbed.h" + +// Connector namespace +namespace Connector { + +class ConnectionStatusInterface { + public: + // Default constructor + ConnectionStatusInterface(); + + // Copy constructor + ConnectionStatusInterface(ConnectionStatusInterface &csi); + + // Destructor + virtual ~ConnectionStatusInterface(); + + /** + Registered + */ + virtual void object_registered(void *ep,void *security,void *data = NULL) = 0; + + /** + Re-registered + */ + virtual void registration_updated(void *ep,void *security,void *data = NULL) = 0; + + /** + De-registered + */ + virtual void object_unregistered(void *ep,void *data = NULL) = 0; + + /** + Bootstrapped + */ + virtual void bootstrapped(void *ep,void *data = NULL) = 0; + + /** + Value Updated + */ + virtual void value_updated(void *ep,void *data,int type) = 0; + }; + + } // namespace Connector + + #endif // __CONNECTION_STATUS_INTERFACE_H__ \ No newline at end of file