How do I make sure only one instance of my scheduled job is running at any given point of time?
I have a requirement: My scoped application have a scheduled job which executes a script include whenever it runs. I need to implement singleton for this scheduled job - meaning, only one instance of that job should be running at any point of time. H...