final class JmsProducerSettings extends JmsSettings

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JmsProducerSettings
  2. JmsSettings
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. val connectionFactory: ConnectionFactory
    Definition Classes
    JmsProducerSettingsJmsSettings
  7. val connectionRetrySettings: ConnectionRetrySettings
    Definition Classes
    JmsProducerSettingsJmsSettings
  8. val connectionStatusSubscriptionTimeout: FiniteDuration
    Definition Classes
    JmsProducerSettingsJmsSettings
  9. val credentials: Option[Credentials]
    Definition Classes
    JmsProducerSettingsJmsSettings
  10. val destination: Option[Destination]
    Definition Classes
    JmsProducerSettingsJmsSettings
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  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. val sendRetrySettings: SendRetrySettings
  21. val sessionCount: Int
    Definition Classes
    JmsProducerSettingsJmsSettings
  22. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  23. val timeToLive: Option[Duration]
  24. def toString(): String
    Definition Classes
    JmsProducerSettings → AnyRef → Any
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  28. def withConnectionFactory(value: ConnectionFactory): JmsProducerSettings

    Factory to use for creating JMS connections.

  29. def withConnectionRetrySettings(value: ConnectionRetrySettings): JmsProducerSettings

    Configure connection retrying.

  30. def withConnectionStatusSubscriptionTimeout(value: Duration): JmsProducerSettings

    Java API: Timeout for connection status subscriber

  31. def withConnectionStatusSubscriptionTimeout(value: FiniteDuration): JmsProducerSettings

    Timeout for connection status subscriber

  32. def withCredentials(value: Credentials): JmsProducerSettings

    Set JMS broker credentials.

  33. def withDestination(value: Destination): JmsProducerSettings

    Set a JMS destination.

    Set a JMS destination. Allows for custom handling with CustomDestination.

  34. def withQueue(name: String): JmsProducerSettings

    Set a queue name as JMS destination.

  35. def withSendRetrySettings(value: SendRetrySettings): JmsProducerSettings

    Configure re-sending.

  36. def withSessionCount(value: Int): JmsProducerSettings

    Number of parallel sessions to use for sending JMS messages.

    Number of parallel sessions to use for sending JMS messages. Increasing the number of parallel sessions increases throughput at the cost of message ordering. While the messages may arrive out of order on the JMS broker, the producer flow outputs messages in the order they are received.

  37. def withTimeToLive(value: Duration): JmsProducerSettings

    Java API: Time messages should be kept on the JMS broker.

    Java API: Time messages should be kept on the JMS broker. This setting can be overridden on individual messages. If not set, messages will never expire.

  38. def withTimeToLive(value: Duration): JmsProducerSettings

    Time messages should be kept on the JMS broker.

    Time messages should be kept on the JMS broker. This setting can be overridden on individual messages. If not set, messages will never expire.

  39. def withTopic(name: String): JmsProducerSettings

    Set a topic name as JMS destination.

Inherited from JmsSettings

Inherited from AnyRef

Inherited from Any

Ungrouped