I am trying to execute a {public void}
method in Service, from scheduled TimerTask which is periodically executing.
This TimerTask periodically checks a condition. If it's true, it calls
method via {className}.{methodName};
However, as Java requires, the
method needs to be {pubic static}
method, if I want to use {className} with {.dot}
The
…