Notifying a separate application of an event
Posted
by
TomDestry
on Programmers
See other posts from Programmers
or by TomDestry
Published on 2013-07-03T16:17:47Z
Indexed on
2013/07/03
17:17 UTC
Read the original article
Hit count: 361
I have an application that runs through various tasks as an automated process.
My client would like me to create a file in a given folder for each task as a way to flag when each task completes. They prefer this to a database flag because they can be notified by the file system rather than continually polling a database table.
I can do this but creating and deleting files as flags feels clunky. Is there a more elegant approach to notifying a third-party of an event?
© Programmers or respective owner