Skip to content
This repository has been archived by the owner on Aug 21, 2023. It is now read-only.
/ messagic-java Public archive

Java implementation of Messagic, a high level API for asynchronous message passing

License

Notifications You must be signed in to change notification settings

messagic/messagic-java

Repository files navigation

messagic-java

Java implementation of Messagic, a high level API for asynchronous message passing

CircleCI Gitter

Example:

MessageChannel channel = // construct the channel using available implementation 
channel.addListener(TextMessage.class, msg -> {
    ...
});
channel.start();
channel.send("Hello");

Implementations

  • Streams - Simple text-based protocol; uses Java's Input and OutputStreams abstractions
  • Fake - For unit testing your code

About

Java implementation of Messagic, a high level API for asynchronous message passing

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published