Updating badges for org-apache-sling-commons-messaging
1 file changed
tree: 26133a8eddf2a5b36e6c3620c42bf9ccf5edae74
  1. src/
  2. .gitignore
  3. bnd.bnd
  4. CODE_OF_CONDUCT.md
  5. CONTRIBUTING.md
  6. Jenkinsfile
  7. LICENSE
  8. pom.xml
  9. README.md
README.md

Build Status License

Apache Sling Commons Messaging

This module is part of the Apache Sling project.

Simple API for sending message​s to recipient​s.

MessageService

  • send(String, String) - takes a message​ and a recipient, e.g.
    • send(“A Message to You, Rudy”, “rudy@ghosttown”) - send a mail to Rudy in Ghost Town
    • send(“Hello Apache!”, “+1.919.573.9199”) - send a fax to the ASF
  • send(String, String, Map) - takes a message, a recipient and additional data useful for the underlying implementation to process and/or send the message

Result<T>

  • getMessage():T - should return a serialized form of the sent message