-
Notifications
You must be signed in to change notification settings - Fork 131
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
Support for asynchronous events #57
Comments
Petter, might you integrate Reactor? E.g., like in http://spring.io/guides/gs/messaging-reactor/. Are you thinking to have I'd be interested in lending a hand here. |
I have no experience with Reactor, but if you think it would make sense to integrate with it, I'll consider it. My idea was to extend the current EventBus with a new interface and implementation that support async methods in addition to the current synchronous ones. This is what I've been playing around with: https://github.com/peholmst/vaadin4spring/tree/feature/eventbus_enhancements The biggest challenges will probably be how to make the thread pool configurable and how to transfer context from the main thread to the executing thread. |
And if you are interested to get your hands dirty with this, please go ahead. :-) |
I am interested in integrating the Reactor project as well. Has there been any efforts since last year on this? |
None. Feel free to get your hands dirty if you're interested. |
Make it possible to publish events in one thread and notify listeners in another thread:
The text was updated successfully, but these errors were encountered: