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

Latest commit

 

History

History
20 lines (15 loc) · 831 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 831 Bytes

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