Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pykka actors auto scheduling #53

Open
mffrench opened this issue Jun 30, 2015 · 3 comments
Open

Pykka actors auto scheduling #53

mffrench opened this issue Jun 30, 2015 · 3 comments

Comments

@mffrench
Copy link

Hello pykka contributors,

is there any equivalent and easy way to implement some message scheduling like we have in akka lib ;

InjectorAkkaSystemActivator.getSystem().scheduler().schedule(Duration.Zero(),
                      Duration.create(millisecondPeriod, TimeUnit.MILLISECONDS),
                      actor,
                      message,
                      InjectorAkkaSystemActivator.getSystem().dispatcher(),
                      null));

Or do we need to implement this kind of scheduler ourself ? Do you have some best practices on that topic ?

Cheers,

Mathilde

@adamcik
Copy link

adamcik commented Jun 30, 2015

Personally I'm not that familiar with Akka, but if I understand the sample code correctly you want to arrange for the message to get sent in x milliseconds. As far as I know Pykka doesn't have any good way of adding this currently.

I've been looking for something similar myself. And the workaround I looked at usually ends up being to use an event loop we already have running in the project and have it send messages. My suspicion, if I remember jodal's plans more or less correctly is that adding things like this in alignment with akka features will probably be in scope for one of the next pykka major releases.

@mffrench
Copy link
Author

OK thank you for this answer @adamcik ;)

@ghost
Copy link

ghost commented Aug 25, 2016

look at https://gist.github.com/fpt/f24d5a5e5fbe7549cabf

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants