FLUSH (OpenInsight 64-bit)
At 26 MAR 2023 08:45:10PM Gerry Van Niekerk wrote:
Hi All
When using EXEC_METHOD('SYSTEM', 'FLUSH') to stop further processing..
How do I "UNFLUSH" it so the processes will continue..
Thanks..
Gerry
At 26 MAR 2023 09:24PM Barry Stevens wrote:
Hi All
When using EXEC_METHOD('SYSTEM', 'FLUSH') to stop further processing..
How do I "UNFLUSH" it so the processes will continue..
Thanks..
Gerry
AFAIK the FLUSH removes them, so!
At 26 MAR 2023 09:29PM Barry Stevens wrote:
Hi All
When using EXEC_METHOD('SYSTEM', 'FLUSH') to stop further processing..
How do I "UNFLUSH" it so the processes will continue..
Thanks..
Gerry
AFAIK the FLUSH removes them, so!
Not sure what you are exacrly trying to achieve , but, maybe look at "BLOCKEVENTS property (System)"
At 27 MAR 2023 03:57AM Carl Pates wrote:
Hi Gerry,
The FLUSH method clears all pending events from the event queue. Any events arriving after that are processed as normal.
The BLOCKEVENTS property removes all pending events from the event queue and prevents any further events from being added until it is reset to FALSE$.
The HOLDEVENTS property allows events to be added to the queue but prevents any from being processed until it is reset to FALSE$
Regards
At 27 MAR 2023 11:06PM Gerry Van Niekerk wrote:
Thanks Carl
Will try
Gerry