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

已回答
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

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

0

请先登录再写评论。