search for: unsubscribe_from_heartbeat

Displaying 1 result from an estimated 1 matches for "unsubscribe_from_heartbeat".

2010 May 13
0
[PATCH matahari] Moving QMF functionality into a transport layer.
...date(void); + void set_beeping(const bool beeping); + bool is_beeping() const; - // agent methods - void shutdown(void); - void reboot(void); + virtual void identify(const int iterations) = 0; + virtual void subscribe_to_heartbeat(const HeartbeatListener& listener) = 0; + virtual void unsubscribe_from_heartbeat(const HeartbeatListener& listener) = 0; + virtual void shutdown() = 0; + virtual void reboot() = 0; }; #endif // __HOST_H diff --git a/src/host_transport.cpp b/src/host_transport.cpp new file mode 100644 index 0000000..ab89912 --- /dev/null +++ b/src/host_transport.cpp @@ -0,0 +1,33 @@ +/...