> thought an event loop would be the best. I figure I could use
> occurences but again that would cause polling. I could use notifiers
> because I think that would allow me to send the data point with the
> notification but again i think there would still be polling.
>
> Does anyone have any examples or easy instructions how to raise an
> event that I have created? Do you think this is the best way to
> handle this situation?
>
There are several approaches. If you are already using an event
structure, you can define and register a user event. Another approach
is to use the occurrence, notifier, queue, etc. You mention this is
polling, but technically these nodes block execution, so unless you have
a timeout, these nodes stop execution until tr
iggered just like an event
structure.
Greg McKaskle