vert-x3 / issues

Apache License 2.0
37 stars 5 forks source link

Support time-based scheduler #196

Closed EmadAlblueshi closed 8 years ago

EmadAlblueshi commented 8 years ago

I wish that vert.x ecosystem has a time-based scheduler for complicated tasks because one-shot timers and periodic timers are very limited.

Thanks

tsegismont commented 8 years ago

Can you elaborate on the minimal features you would need?

EmadAlblueshi commented 8 years ago

@tsegismont Hi, something like Cron but in vert.x way of course.

tsegismont commented 8 years ago

As a workaround, if you're programming in Java, you could use cron4j. Just beware of the thread executing the task (use either runOnContext or the event bus to go back to Vert.x world).

vietj commented 8 years ago

there is https://github.com/diabolicallabs/vertx-cron

EmadAlblueshi commented 8 years ago

@tsegismont @vietj Thanks for immediate response. I'm going to see your recommendations and such a feature would be great :+1:

vietj commented 8 years ago

@EmadAlblueshi have you checked the vertx-cron project ?

EmadAlblueshi commented 8 years ago

@vietj yes, It does the job but I'm not sure if it's polyglot

vietj commented 8 years ago

@EmadAlblueshi it could be contributed to the project instead - you should get in touch with the project owner

EmadAlblueshi commented 8 years ago

@vietj ok thanks