diff options
Diffstat (limited to 'cpp/include/qmf/engine/ResilientConnection.h')
-rw-r--r-- | cpp/include/qmf/engine/ResilientConnection.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cpp/include/qmf/engine/ResilientConnection.h b/cpp/include/qmf/engine/ResilientConnection.h index 359c8ea6ff..c03d08cb96 100644 --- a/cpp/include/qmf/engine/ResilientConnection.h +++ b/cpp/include/qmf/engine/ResilientConnection.h @@ -155,6 +155,14 @@ namespace engine { */ void setNotifyFd(int fd); + /** + * Send a byte into the notify file descriptor. + * + * This can be used to wake up the event processing portion of the engine from either the + * wrapped implementation or the engine itself. + */ + void notify(); + private: ResilientConnectionImpl* impl; }; |