From d04ce4cb7d4aa3eb72bc79c09dfe5bb025ad79f4 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 17 Nov 2012 21:50:35 +0000 Subject: Gracefully handle failure to send notifications due to buffer overrun. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4827 a436a847-0d15-0410-975c-d299462d15a1 --- src/server/Context.hpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/server/Context.hpp') diff --git a/src/server/Context.hpp b/src/server/Context.hpp index cabfcc89..5343b817 100644 --- a/src/server/Context.hpp +++ b/src/server/Context.hpp @@ -53,8 +53,10 @@ public: virtual ~Context() {} - /** Send a notification from this run context. */ - void notify(LV2_URID key = 0, + /** Send a notification from this run context. + * @return false on failure (ring is full) + */ + bool notify(LV2_URID key = 0, FrameTime time = 0, PortImpl* port = 0, uint32_t size = 0, -- cgit v1.2.1