All Projects → smallrye → smallrye-reactive-messaging

smallrye / smallrye-reactive-messaging

Licence: Apache-2.0 license
SmallRye Reactive Messaging

Programming Languages

java
68154 projects - #9 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to smallrye-reactive-messaging

Alpakka
Alpakka is a Reactive Enterprise Integration library for Java and Scala, based on Reactive Streams and Akka.
Stars: ✭ 1,154 (+701.39%)
Mutual labels:  reactive, messaging
eventide-postgres
Event Sourcing and Microservices Stack for Ruby
Stars: ✭ 92 (-36.11%)
Mutual labels:  reactive, messaging
Helidon
Java libraries for writing microservices
Stars: ✭ 2,554 (+1673.61%)
Mutual labels:  reactive, microprofile
Spring Cloud Stream
Framework for building Event-Driven Microservices
Stars: ✭ 662 (+359.72%)
Mutual labels:  reactive, messaging
muon-java
Muon Core for the JVM. APIs and Microservices taken to the next level
Stars: ✭ 18 (-87.5%)
Mutual labels:  reactive, messaging
reactive-extensions
Extensions to the dotnet/reactive library.
Stars: ✭ 46 (-68.06%)
Mutual labels:  reactive
mono-reactive
open source Reactive Extensions (Rx) implementation for Mono
Stars: ✭ 65 (-54.86%)
Mutual labels:  reactive
pulsar-adapters
Apache Pulsar Adapters
Stars: ✭ 18 (-87.5%)
Mutual labels:  messaging
jakartaee-kubernetes
Effective Kubernetes for Java EE, Jakarta EE and MicroProfile Developers
Stars: ✭ 32 (-77.78%)
Mutual labels:  microprofile
pulsar-user-group-loc-cn
Workspace for China local user group.
Stars: ✭ 19 (-86.81%)
Mutual labels:  messaging
a-feign-like-rsocket-client
@Mario5Gray had a great idea - a Feign for RSocket. So, here it is.
Stars: ✭ 20 (-86.11%)
Mutual labels:  reactive
Bird
🐤 Bird is a lightweight HTTP networking library written in Swift. It is based on Apples new Reactive Framework Combine and focused on maintain- and extendability.
Stars: ✭ 17 (-88.19%)
Mutual labels:  reactive
Reactive.XAF
DevExpress XAF extension framework. 𝗹𝗶𝗻𝗸𝗲𝗱𝗶𝗻.𝗲𝘅𝗽𝗮𝗻𝗱𝗳𝗿𝗮𝗺𝗲𝘄𝗼𝗿𝗸.𝗰𝗼𝗺, 𝘆𝗼𝘂𝘁𝘂𝗯𝗲.𝗲𝘅𝗽𝗮𝗻𝗱𝗳𝗿𝗮𝗺𝗲𝘄𝗼𝗿𝗸.𝗰𝗼𝗺 and 𝘁𝘄𝗶𝘁𝘁𝗲𝗿 @𝗲𝘅𝗽𝗮𝗻𝗱𝗳𝗿𝗮𝗺𝗲𝘄𝗼𝗿𝗸 and or simply 𝗦𝘁𝗮𝗿/𝘄𝗮𝘁𝗰𝗵 this repository and get notified from 𝗚𝗶𝘁𝗛𝘂𝗯
Stars: ✭ 60 (-58.33%)
Mutual labels:  reactive
patternfly-fritz2
Pure Kotlin implementation of PatternFly
Stars: ✭ 31 (-78.47%)
Mutual labels:  reactive
gafka
A full ecosystem that is built around kafka powered by golang
Stars: ✭ 96 (-33.33%)
Mutual labels:  messaging
amq-examples
This repository contains a set of examples to be used with Red Hat AMQ messaging suite components.
Stars: ✭ 25 (-82.64%)
Mutual labels:  messaging
statechart
A rust implementation of statecharts: hierarchical, reactive state machines
Stars: ✭ 41 (-71.53%)
Mutual labels:  reactive
reactive-rs
Streams and broadcasts: functional reactive programming in Rust.
Stars: ✭ 28 (-80.56%)
Mutual labels:  reactive
reflex-dom-semui
A reflex-dom API for Semantic UI components
Stars: ✭ 22 (-84.72%)
Mutual labels:  reactive
FSRx
Parent repository to accompany session/workshop for Full Stack Reactive Java/Kotlin
Stars: ✭ 26 (-81.94%)
Mutual labels:  reactive

Maven Central Continuous Integration Build License

Implementation of the MicroProfile Reactive Messaging specification

This project is an implementation of the (next to be) Eclipse MicroProfile Reactive Messaging specification - a CDI extension to build event-driven microservices and data streaming applications. It provides support for:

It also provides a way to inject streams into CDI beans, and so link your Reactive Messaging streams into CDI beans,or JAX-RS resources.

Branches

  • main - 3.x development stream. Uses Vert.x 4.x and Microprofile 4.x
  • 2.x - Not under development anymore. Uses Vert.x 3.x and Microprofile 3.x

Getting started

Prerequisites

See PREREQUISITES.md for details.

The build process requires Apache Maven and Java 8+ and can be performed using:

mvn clean install

How to start

The best way to start is to look at the examples/quickstart project. It's a Maven project listing the minimal set of dependencies and containing a single class:

package io.smallrye.reactive.messaging.quickstart;

import org.eclipse.microprofile.reactive.messaging.Incoming;
import org.eclipse.microprofile.reactive.messaging.Outgoing;
import org.eclipse.microprofile.reactive.streams.operators.PublisherBuilder;
import org.eclipse.microprofile.reactive.streams.operators.ReactiveStreams;

import javax.enterprise.context.ApplicationScoped;
import javax.enterprise.inject.se.SeContainerInitializer;

@ApplicationScoped
public class QuickStart {

  public static void main(String[] args) {
    SeContainerInitializer.newInstance().initialize();
  }


  @Outgoing("source")
  public PublisherBuilder<String> source() {
    return ReactiveStreams.of("hello", "with", "SmallRye", "reactive", "message");
  }

  @Incoming("source")
  @Outgoing("processed-a")
  public String toUpperCase(String payload) {
    return payload.toUpperCase();
  }

  @Incoming("processed-a")
  @Outgoing("processed-b")
  public PublisherBuilder<String> filter(PublisherBuilder<String> input) {
    return input.filter(item -> item.length() > 4);
  }

  @Incoming("processed-b")
  public void sink(String word) {
    System.out.println(">> " + word);
  }

}

Run the project with: mvn compile exec:java -Dexec.mainClass=io.smallrye.reactive.messaging.quickstart.QuickStart:

>> HELLO
>> SMALLRYE
>> REACTIVE
>> MESSAGE

Built With

Contributing

Please read CONTRIBUTING.md for details, and the process for submitting pull requests.

Sponsors

The project is sponsored by Red Hat.

License

This project is licensed under the Apache License 2.0 - see the LICENSE file for details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].