-
Notifications
You must be signed in to change notification settings - Fork 19
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
Add support for Mutiny #114
Comments
@Plawn There's already a solution described in #10 (comment), but that hasn't been explicitly tested. Would that solution work for you? |
The documentation is missing, there's #15 for tracking that. |
Hello, @lhotari I wil check this and come back to you as soon as possible |
For Mutiny, that would be something like (on master): Multi<MessageSpec<T>> messages = ...
Multi<MessageSendResult<T>> sendResults = Multi.createFrom().publisher(sender.sendMany(messageSpecs));
MessageSpec message = ...
Uni<MessageId> messageId = Uni.createFrom().publisher(sender.sendOne(messageSpec)); |
Thanks ! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add support for mutiny as a reactive library
The text was updated successfully, but these errors were encountered: