Skip to content
This repository was archived by the owner on Dec 15, 2019. It is now read-only.

Latest commit

 

History

History
31 lines (25 loc) · 780 Bytes

README.md

File metadata and controls

31 lines (25 loc) · 780 Bytes

AMQP based durable mailbox for akka actors.

License

This software is distributed under the Apache License 2.0.

Usage

To make use of the durable amqp mailbox, you have to have an amqp broker running and add the following to your akka.conf:

akka {
  actor {
    mailbox {
      amqp {
        hostname = "127.0.0.1"
        port = 5672
        user = "guest"
        password = "guest"
        virtual-host = "/"
        # as an alternative to the single setings,
        # a uri can be provided, which wil be
        # prefered over the other settings
        # uri = "amqp://guest:[email protected]:5672/"
        connection-timeout = 1000ms
        delivery-timeout = 1000ms
      }
    }
  }
}