Notification and threads

The use of Notification in the clarion live vids illustrates its power.

But recently we found that sometimes our GYMN App in which we use it in many places did not in fact post the event to the front of the caller threads accept loop and this 1 in every five times it seem to be dropped.

Grate feature but im wondering if there are any thing to whatch out for when using notification that might stop an event being processed by the caller threads accept loop.

Don’t think I’ve ever seen notify()s go astray. In case you hadn’t noticed something to be aware of is that notify()s are LIFO “last in first out” unlike post(s) which are FIFO “first in first out”.

1 Like

Thank you for reminding us and of course i think Post lets you put a numeric value as it last parameter to determine it place in the queue.