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. val connectionFactory: ConnectionFactory
    Definition Classes
    JmsProducerSettingsJmsSettings
  2. val connectionRetrySettings: ConnectionRetrySettings
    Definition Classes
    JmsProducerSettingsJmsSettings
  3. val connectionStatusSubscriptionTimeout: FiniteDuration
    Definition Classes
    JmsProducerSettingsJmsSettings
  4. val credentials: Option[Credentials]
    Definition Classes
    JmsProducerSettingsJmsSettings
  5. val destination: Option[Destination]
    Definition Classes
    JmsProducerSettingsJmsSettings
  6. val sendRetrySettings: SendRetrySettings
  7. val sessionCount: Int
    Definition Classes
    JmsProducerSettingsJmsSettings
  8. val timeToLive: Option[Duration]
  9. def toString(): String
    Definition Classes
    JmsProducerSettings → AnyRef → Any
  10. def withConnectionFactory(value: ConnectionFactory): JmsProducerSettings

    Factory to use for creating JMS connections.

  11. def withConnectionRetrySettings(value: ConnectionRetrySettings): JmsProducerSettings

    Configure connection retrying.

  12. def withConnectionStatusSubscriptionTimeout(value: Duration): JmsProducerSettings

    Java API: Timeout for connection status subscriber

  13. def withConnectionStatusSubscriptionTimeout(value: FiniteDuration): JmsProducerSettings

    Timeout for connection status subscriber

  14. def withCredentials(value: Credentials): JmsProducerSettings

    Set JMS broker credentials.

  15. def withDestination(value: Destination): JmsProducerSettings

    Set a JMS destination.

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

  16. def withQueue(name: String): JmsProducerSettings

    Set a queue name as JMS destination.

  17. def withSendRetrySettings(value: SendRetrySettings): JmsProducerSettings

    Configure re-sending.

  18. 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.

  19. 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.

  20. 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.

  21. def withTopic(name: String): JmsProducerSettings

    Set a topic name as JMS destination.