I am using a @Scheduled
cron job on a method is
Controller A {
@Scheduled(cron = "0 0/2 * * * *", zone = "GMT")
public void methodA() {
// Do something
}`
Is there a way my ControllerB is notified while methodA() is busy?
Controller B {
@Scheduled
public void methodB() {
// I want to be informed that a scheduled job is running
}`