Reviews run for a minimum of one week. The outcome of the review is decided on this date. This is the last day to make comments or ask questions about this review.
Reactive Messaging 1.0
This is the first release of MicroProfile Reactive Messaging https://github.com/eclipse/microprofile-reactive-messaging. The release includes API, TCK and Spec.
The Reactive Messaging specification defines a development model for declaring CDI beansproducing, consuming and processing messages. The communication between these componentsuses Reactive Streams. This specification relies on Eclipse MicroProfile Reactive Streams Operators and CDI.
The main APIs are @Incoming @Outgoing annotations together with some SPIs for connectors to link up with messaging providers.
An example of usage:
@Incoming("my-channel")
public CompletionStage<Void>consume(Message<String>message {
returnmessage.ack();
}
- Log in to post comments
Release MicroProfile Reactive
Submitted by Emily Jiang on Wed, 06/26/2019 - 10:14
Release MicroProfile Reactive Messaging Spec 1.0 API, Spec and TCK
The download materials,
Submitted by Gordon Hutchison on Tue, 10/29/2019 - 13:11
The download materials, including a PDF of the spec, can be found here: https://download.eclipse.org/microprofile/microprofile-reactive-messaging-1.0/ Gordon Hutchison.