Re: [akka-user] combining Akka Persistence with Akka Scheduling

2014-08-07 Thread Odd Möller
Hi Greg and Akka! Nice to hear that you find the prototype interesting. I'll try to have a look into your scheduler code as soon as I can. I will also look into moving my existing code to a new github repo (which is not a fork of Akka repo) for any further development. Greetings Odd On Tue,

Re: [akka-user] combining Akka Persistence with Akka Scheduling

2014-08-05 Thread Akka Team
Hi Odd! I had a brief look at your prototype (didn't read the whole thing – that's a lot of work you've put in there! :-)). In general I think it would benefit from living outside of Akka as a library which users could pick up if they wanted to, then you could also pull in JodaTime (and not have

Re: [akka-user] combining Akka Persistence with Akka Scheduling

2014-08-05 Thread Greg Flanagan
Odd, I have something similar to what you have but I haven't integrated persistence yet. It basically uses JodaTime to allow the user to schedule a task based on a datetime has the ability to repeat tasks at a cadence like, hourly, daily, weekly, etc., and repeat a finite or infinite number of

Re: [akka-user] combining Akka Persistence with Akka Scheduling

2014-08-04 Thread Greg Flanagan
Hey Odd, This looks promising. Thanks for passing along. Greg On Sunday, August 3, 2014 3:04:27 AM UTC-7, Odd Möller wrote: Hi Greg I have a prototype implementation of an Akka extension that uses persistence to save scheduler state:

Re: [akka-user] combining Akka Persistence with Akka Scheduling

2014-08-03 Thread Odd Möller
Hi Greg I have a prototype implementation of an Akka extension that uses persistence to save scheduler state: https://github.com/odd/akka/tree/wip-persistence-odd/akka-contrib/src/main/scala/akka/contrib/persistence/scheduling. It is by no means finished and still very much a work-in-progress but

Re: [akka-user] combining Akka Persistence with Akka Scheduling

2014-07-31 Thread Martynas Mickevičius
Hi Greg, just dropping this in case you have not seen that it is possible to use quartz https://github.com/akka/akka/blob/9dae0ad525a92ebf8b0f5f42878a10628ac24aae/akka-samples/akka-sample-camel-scala/src/main/scala/sample/camel/QuartzExample.scala through akka-camel. On Fri, Jul 25, 2014 at

Re: [akka-user] combining Akka Persistence with Akka Scheduling

2014-07-25 Thread Konrad Malawski
Hello Greg, short question - do you aim to provide something as powerful as quartz using this? I mean on monday at 13:02 etc. Because that's not really what our scheduler is designed to do - we only work with in X amount of time. Instead maybe you'd simply like to integrate quartz with akka, as

Re: [akka-user] combining Akka Persistence with Akka Scheduling

2014-07-25 Thread Akka Team
Hi Greg, On Fri, Jul 25, 2014 at 4:20 PM, Greg Flanagan ventis...@gmail.com wrote: Hey Konrad, I wasn't planning on making it as powerful as quartz but simply making what's available in the scheduler persistent, so that work that is deferred (i.e. scheduled) will not be lost on jvm shutdown.

Re: [akka-user] combining Akka Persistence with Akka Scheduling

2014-07-25 Thread Greg Flanagan
Endre, Seems reasonable to keep the scheduler light weight and performant. My plans were to build something around it. Thanks. Greg On Friday, July 25, 2014 7:40:39 AM UTC-7, Akka Team wrote: Hi Greg, On Fri, Jul 25, 2014 at 4:20 PM, Greg Flanagan vent...@gmail.com javascript: wrote: