Package

com.newmotion.akka

rabbitmq

Permalink

package rabbitmq

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. rabbitmq
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class AmqpShutdownSignal(cause: ShutdownSignalException) extends ShutdownSignal with Product with Serializable

    Permalink
  2. type BasicProperties = rabbitmq.client.AMQP.BasicProperties

    Permalink
  3. type Channel = rabbitmq.client.Channel

    Permalink
  4. class ChannelActor extends RabbitMqActor with FSM[State, Data]

    Permalink
  5. case class ChannelCreated(channel: ActorRef) extends Product with Serializable

    Permalink
  6. case class ChannelMessage(onChannel: OnChannel, dropIfNoChannel: Boolean = true) extends Product with Serializable

    Permalink
  7. type Connection = rabbitmq.client.Connection

    Permalink
  8. class ConnectionActor extends RabbitMqActor with FSM[State, Data]

    Permalink
  9. type ConnectionFactory = rabbitmq.client.ConnectionFactory

    Permalink
  10. case class CreateChannel(props: Props, name: Option[String] = None) extends Product with Serializable

    Permalink
  11. type DefaultConsumer = rabbitmq.client.DefaultConsumer

    Permalink
  12. type Envelope = rabbitmq.client.Envelope

    Permalink
  13. type OnChannel = (Channel) ⇒ Any

    Permalink
  14. trait RabbitMqActor extends Actor with ShutdownListener

    Permalink

  15. implicit final class RichConnectionActor extends AnyVal

    Permalink
  16. implicit final class RichConnectionFactory extends AnyVal

    Permalink
  17. sealed trait ShutdownSignal extends AnyRef

    Permalink
  18. trait StashUntilChannel extends AnyRef

    Permalink

    The StashUntilChannel trait makes an actor have a RabbitMQ channel set up with the setupChannel method which should be provided in the actor implementation.

    The StashUntilChannel trait makes an actor have a RabbitMQ channel set up with the setupChannel method which should be provided in the actor implementation. The actor can be used immediately. While the channel setup is in progress, incoming messages will be queued and they will be processed by the time the channel is set up.

    The actor behavior in a StashUntilChannel instance must be defined in the receiveWithChannel method instead of the receive method.

Value Members

  1. object ChannelActor

    Permalink

  2. object ConnectionActor

    Permalink

  3. object ParentShutdownSignal extends ShutdownSignal with Product with Serializable

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped