Packages

object JmsConsumer

Factory methods to create JMS consumers.

Source
JmsConsumer.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JmsConsumer
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def ackSource(settings: JmsConsumerSettings): Source[AckEnvelope, JmsConsumerControl]

    Creates a source emitting AckEnvelope instances, and materializes a control instance to shut down the consumer.

    Creates a source emitting AckEnvelope instances, and materializes a control instance to shut down the consumer. It requires explicit acknowledgements on the envelopes. The acknowledgements must be called on the envelope and not on the message inside.

  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def browse(settings: JmsBrowseSettings): Source[Message, NotUsed]

    Creates a source browsing a JMS destination (which does not consume the messages) and emitting javax.jms.Message instances.

  7. def bytesSource(settings: JmsConsumerSettings): Source[Array[Byte], JmsConsumerControl]

    Creates a source emitting byte arrays, and materializes a control instance to shut down the consumer.

  8. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  9. def create(settings: JmsConsumerSettings): Source[Message, JmsConsumerControl]

    Creates a source emitting javax.jms.Message instances, and materializes a control instance to shut down the consumer.

  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. def mapSource(settings: JmsConsumerSettings): Source[Map[String, Any], JmsConsumerControl]

    Creates a source emitting maps, and materializes a control instance to shut down the consumer.

  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. def objectSource(settings: JmsConsumerSettings): Source[Serializable, JmsConsumerControl]

    Creates a source emitting de-serialized objects, and materializes a control instance to shut down the consumer.

  21. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  22. def textSource(settings: JmsConsumerSettings): Source[String, JmsConsumerControl]

    Creates a source emitting Strings, and materializes a control instance to shut down the consumer.

  23. def toString(): String
    Definition Classes
    AnyRef → Any
  24. def txSource(settings: JmsConsumerSettings): Source[TxEnvelope, JmsConsumerControl]

    Creates a source emitting TxEnvelope instances, and materializes a control instance to shut down the consumer.

    Creates a source emitting TxEnvelope instances, and materializes a control instance to shut down the consumer. It requires explicit committing or rollback on the envelopes.

  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped