Is there any listener or scheduler like implementation that runs atleast once everyday ?

Answered
I want to run a few operations once everyday. At first I thought of implementing using the listener that runs everytime a project opens, but I noticed, that my plugin users don't close the project, or IDEA, or even thier laptop. Is there any other way to run a few background tasks once everyday in this case.
0
1 comment

You can implement a service that will check the time and run the desired task, i.e. user TimerTask.

0

Please sign in to leave a comment.