I am looking for java library or open source that will do the following:
Accept a Runnable task, and a specific time to execute it in the future, and execute it then.
Do you know such?
I am looking for java library or open source that will do the following:
Share
You mean something like scheduler? Try Quartz (doesn’t use
RunnablebutJob).Or try Java’s ScheduledThreadPoolExecutor.