Packages

c

io.gatling.javaapi.mqtt

PublishActionBuilder

final class PublishActionBuilder extends ActionBuilder

DSL for actions that publish MQTT messages

Immutable, so all methods return a new occurrence and leave the original unmodified.

Linear Supertypes
ActionBuilder, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PublishActionBuilder
  2. ActionBuilder
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new PublishActionBuilder(wrapped: PublishBuilder)

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 asScala(): ActionBuilder
    Definition Classes
    PublishActionBuilder → ActionBuilder
    Annotations
    @Override()
  6. def await(timeout: Duration, expectedTopic: String): Checkable

    Wait for the checks to complete

    Wait for the checks to complete

    timeout

    the check timeout

    expectedTopic

    the topic where the response message is expected to be published, expressed as a Gatling Expression Language String

    returns

    the next DSL step

    Annotations
    @Nonnull()
  7. def await(timeout: Long, expectedTopic: String): Checkable

    Wait for the checks to complete

    Wait for the checks to complete

    timeout

    the check timeout in seconds

    expectedTopic

    the topic where the response message is expected to be published, expressed as a Gatling Expression Language String

    returns

    the next DSL step

    Annotations
    @Nonnull()
  8. def await(timeout: Duration): Checkable

    Wait for the checks to complete

    Wait for the checks to complete

    timeout

    the check timeout

    returns

    the next DSL step

    Annotations
    @Nonnull()
  9. def await(timeout: Long): Checkable

    Wait for the checks to complete

    Wait for the checks to complete

    timeout

    the check timeout in seconds

    returns

    the next DSL step

    Annotations
    @Nonnull()
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  13. def expect(timeout: Duration, expectedTopic: String): Checkable

    Perform checks in the background, meaning state will have to be reconciled with MqttDsl#waitForMessages()

    Perform checks in the background, meaning state will have to be reconciled with MqttDsl#waitForMessages()

    timeout

    the check timeout

    expectedTopic

    the topic where the response message is expected to be published, expressed as a Gatling Expression Language String

    returns

    the next DSL step

    Annotations
    @Nonnull()
  14. def expect(timeout: Long, expectedTopic: Function[Session, String]): Checkable

    Perform checks in the background, meaning state will have to be reconciled with MqttDsl#waitForMessages()

    Perform checks in the background, meaning state will have to be reconciled with MqttDsl#waitForMessages()

    timeout

    the check timeout in seconds

    expectedTopic

    the topic where the response message is expected to be published, expressed as a function

    returns

    the next DSL step

    Annotations
    @Nonnull()
  15. def expect(timeout: Duration, expectedTopic: Function[Session, String]): Checkable

    Perform checks in the background, meaning state will have to be reconciled with MqttDsl#waitForMessages()

    Perform checks in the background, meaning state will have to be reconciled with MqttDsl#waitForMessages()

    timeout

    the check timeout

    expectedTopic

    the topic where the response message is expected to be published, expressed as a function

    returns

    the next DSL step

    Annotations
    @Nonnull()
  16. def expect(timeout: Long, expectedTopic: String): Checkable

    Perform checks in the background, meaning state will have to be reconciled with MqttDsl#waitForMessages()

    Perform checks in the background, meaning state will have to be reconciled with MqttDsl#waitForMessages()

    timeout

    the check timeout in seconds

    expectedTopic

    the topic where the response message is expected to be published, expressed as a Gatling Expression Language String

    returns

    the next DSL step

    Annotations
    @Nonnull()
  17. def expect(timeout: Duration): Checkable

    Perform checks in the background, meaning state will have to be reconciled with MqttDsl#waitForMessages()

    Perform checks in the background, meaning state will have to be reconciled with MqttDsl#waitForMessages()

    timeout

    the check timeout

    returns

    the next DSL step

    Annotations
    @Nonnull()
  18. def expect(timeout: Long): Checkable

    Perform checks in the background, meaning state will have to be reconciled with MqttDsl#waitForMessages()

    Perform checks in the background, meaning state will have to be reconciled with MqttDsl#waitForMessages()

    timeout

    the check timeout in seconds

    returns

    the next DSL step

    Annotations
    @Nonnull()
  19. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  20. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  26. def qosAtLeastOnce(): PublishActionBuilder

    Use an at-least-once QoS

    Use an at-least-once QoS

    returns

    a new ActionBuilder instance

    Annotations
    @Nonnull()
  27. def qosAtMostOnce(): PublishActionBuilder

    Use an at-most-once QoS

    Use an at-most-once QoS

    returns

    a new ActionBuilder instance

    Annotations
    @Nonnull()
  28. def qosExactlyOnce(): PublishActionBuilder

    Use an exactly-once QoS

    Use an exactly-once QoS

    returns

    a new ActionBuilder instance

    Annotations
    @Nonnull()
  29. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  30. def toString(): String
    Definition Classes
    AnyRef → Any
  31. def wait(timeout: Duration, expectedTopic: Function[Session, String]): Checkable

    Wait for the checks to complete

    Wait for the checks to complete

    timeout

    the check timeout

    expectedTopic

    the topic where the response message is expected to be published, expressed as a function

    returns

    the next DSL step

    Annotations
    @Nonnull()
  32. def wait(timeout: Long, expectedTopic: Function[Session, String]): Checkable

    Wait for the checks to complete

    Wait for the checks to complete

    timeout

    the check timeout in seconds

    expectedTopic

    the topic where the response message is expected to be published, expressed as a function

    returns

    the next DSL step

    Annotations
    @Nonnull()
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from ActionBuilder

Inherited from AnyRef

Inherited from Any

Ungrouped