c

io.gatling.javaapi.http

SseConnectActionBuilder

final class SseConnectActionBuilder extends RequestWithBodyActionBuilder[SseConnectActionBuilder, SseConnectRequestBuilder] with SseAwaitActionBuilder[SseConnectActionBuilder, SseConnectRequestBuilder]

DSL for building SSE connect actions

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

Linear Supertypes
SseAwaitActionBuilder[SseConnectActionBuilder, SseConnectRequestBuilder], RequestWithBodyActionBuilder[SseConnectActionBuilder, SseConnectRequestBuilder], RequestActionBuilder[SseConnectActionBuilder, SseConnectRequestBuilder], ActionBuilder, Executable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SseConnectActionBuilder
  2. SseAwaitActionBuilder
  3. RequestWithBodyActionBuilder
  4. RequestActionBuilder
  5. ActionBuilder
  6. Executable
  7. AnyRef
  8. 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. def asFormUrlEncoded(): SseConnectActionBuilder

    Set the content-type header for form-urlencoding body.

    Set the content-type header for form-urlencoding body.

    returns

    a new HttpRequestActionBuilder instance

    Definition Classes
    RequestWithBodyActionBuilder
    Annotations
    @NonNull()
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def asJson(): SseConnectActionBuilder

    Set the content-type header for JSON

    Set the content-type header for JSON

    returns

    a new DSL instance

    Definition Classes
    RequestWithBodyActionBuilder
    Annotations
    @NonNull()
  7. def asMultipartForm(): SseConnectActionBuilder

    Set the content-type header for multipart body.

    Set the content-type header for multipart body.

    returns

    a new HttpRequestActionBuilder instance

    Definition Classes
    RequestWithBodyActionBuilder
    Annotations
    @NonNull()
  8. def asScala(): ActionBuilder
    Definition Classes
    SseConnectActionBuilder → ActionBuilder
    Annotations
    @Override()
  9. def asXml(): SseConnectActionBuilder

    Set the content-type header for XML

    Set the content-type header for XML

    returns

    a new DSL instance

    Definition Classes
    RequestWithBodyActionBuilder
    Annotations
    @NonNull()
  10. def await(timeout: Function[Session, Duration]): On[SseConnectActionBuilder]

    Boostrap a check that waits for a given duration

    Boostrap a check that waits for a given duration

    timeout

    the wait duration, expressed as a function

    returns

    the next DSL step

    Definition Classes
    SseAwaitActionBuilder
    Annotations
    @NonNull()
  11. def await(timeout: String): On[SseConnectActionBuilder]

    Boostrap a check that waits for a given duration

    Boostrap a check that waits for a given duration

    timeout

    the wait duration, expressed as a Gatling Expression Language String

    returns

    the next DSL step

    Definition Classes
    SseAwaitActionBuilder
    Annotations
    @NonNull()
  12. def await(timeout: Duration): On[SseConnectActionBuilder]

    Boostrap a check that waits for a given duration

    Boostrap a check that waits for a given duration

    timeout

    the static wait duration

    returns

    the next DSL step

    Definition Classes
    SseAwaitActionBuilder
    Annotations
    @NonNull()
  13. def await(timeout: Long): On[SseConnectActionBuilder]

    Boostrap a check that waits for a given duration

    Boostrap a check that waits for a given duration

    timeout

    the static wait duration in seconds

    returns

    the next DSL step

    Definition Classes
    SseAwaitActionBuilder
    Annotations
    @NonNull()
  14. def basicAuth(username: Function[Session, String], password: Function[Session, String]): SseConnectActionBuilder

    Set the authorization header for Basic Auth

    Set the authorization header for Basic Auth

    username

    the username, expressed as a function

    password

    the password, expressed as a function

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  15. def basicAuth(username: Function[Session, String], password: String): SseConnectActionBuilder

    Set the authorization header for Basic Auth

    Set the authorization header for Basic Auth

    username

    the username, expressed as a function

    password

    the password, expressed as a Gatling Expression Language String

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  16. def basicAuth(username: String, password: Function[Session, String]): SseConnectActionBuilder

    Set the authorization header for Basic Auth

    Set the authorization header for Basic Auth

    username

    the username, expressed as a Gatling Expression Language String

    password

    the password, expressed as a function

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  17. def basicAuth(username: String, password: String): SseConnectActionBuilder

    Set the authorization header for Basic Auth

    Set the authorization header for Basic Auth

    username

    the username, expressed as a Gatling Expression Language String

    password

    the password, expressed as a Gatling Expression Language String

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  18. def body(body: Body): SseConnectActionBuilder

    Define a request body

    Define a request body

    body

    the request body

    returns

    a new HttpRequestActionBuilder instance

    Definition Classes
    RequestWithBodyActionBuilder
    Annotations
    @NonNull()
  19. def bodyPart(part: BodyPart): SseConnectActionBuilder

    Set a multipart body part

    Set a multipart body part

    part

    the part

    returns

    a new HttpRequestActionBuilder instance

    Definition Classes
    RequestWithBodyActionBuilder
    Annotations
    @NonNull()
  20. def bodyParts(parts: List[BodyPart]): SseConnectActionBuilder

    Set multiple multipart body parts

    Set multiple multipart body parts

    parts

    the parts

    returns

    a new HttpRequestActionBuilder instance

    Definition Classes
    RequestWithBodyActionBuilder
    Annotations
    @NonNull()
  21. def bodyParts(parts: <repeated...>[BodyPart]): SseConnectActionBuilder

    Set multiple multipart body parts

    Set multiple multipart body parts

    parts

    the parts

    returns

    a new HttpRequestActionBuilder instance

    Definition Classes
    RequestWithBodyActionBuilder
    Annotations
    @NonNull()
  22. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  23. def digestAuth(username: Function[Session, String], password: Function[Session, String]): SseConnectActionBuilder

    Set the authorization header for Digest Auth

    Set the authorization header for Digest Auth

    username

    the username, expressed as a function

    password

    the password, expressed as a function

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  24. def digestAuth(username: Function[Session, String], password: String): SseConnectActionBuilder

    Set the authorization header for Digest Auth

    Set the authorization header for Digest Auth

    username

    the username, expressed as a function

    password

    the password, expressed as a Gatling Expression Language String

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  25. def digestAuth(username: String, password: Function[Session, String]): SseConnectActionBuilder

    Set the authorization header for Digest Auth

    Set the authorization header for Digest Auth

    username

    the username, expressed as a Gatling Expression Language String

    password

    the password, expressed as a function

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  26. def digestAuth(username: String, password: String): SseConnectActionBuilder

    Set the authorization header for Digest Auth

    Set the authorization header for Digest Auth

    username

    the username, expressed as a Gatling Expression Language String

    password

    the password, expressed as a Gatling Expression Language String

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  27. def disableUrlEncoding(): SseConnectActionBuilder

    Disable the automatic url encoding that tries to detect unescaped reserved chars

    Disable the automatic url encoding that tries to detect unescaped reserved chars

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  28. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  29. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  30. def form(map: Function[Session, Map[String, AnyRef]]): SseConnectActionBuilder

    Set a form, typically captured from a form check

    Set a form, typically captured from a form check

    map

    the form inputs, expressed as a function

    returns

    a new HttpRequestActionBuilder instance

    Definition Classes
    RequestWithBodyActionBuilder
    Annotations
    @NonNull()
  31. def form(form: String): SseConnectActionBuilder

    Set a form, typically captured from a form check

    Set a form, typically captured from a form check

    form

    the form inputs, expressed as a Gatling Expression Language String

    returns

    a new HttpRequestActionBuilder instance

    Definition Classes
    RequestWithBodyActionBuilder
    Annotations
    @NonNull()
  32. def formParam(key: Function[Session, String], value: Function[Session, AnyRef]): SseConnectActionBuilder

    Set an HTML form parameter

    Set an HTML form parameter

    key

    the parameter key, expressed as a function

    value

    the parameter value, expressed as a function

    returns

    a new HttpRequestActionBuilder instance

    Definition Classes
    RequestWithBodyActionBuilder
    Annotations
    @NonNull()
  33. def formParam(key: String, value: Function[Session, AnyRef]): SseConnectActionBuilder

    Set an HTML form parameter

    Set an HTML form parameter

    key

    the parameter key, expressed as a Gatling Expression Language String

    value

    the parameter value, expressed as a function

    returns

    a new HttpRequestActionBuilder instance

    Definition Classes
    RequestWithBodyActionBuilder
    Annotations
    @NonNull()
  34. def formParam(key: Function[Session, String], value: AnyRef): SseConnectActionBuilder

    Set an HTML form parameter

    Set an HTML form parameter

    key

    the parameter key, expressed as a function

    value

    the parameter static value

    returns

    a new HttpRequestActionBuilder instance

    Definition Classes
    RequestWithBodyActionBuilder
    Annotations
    @NonNull()
  35. def formParam(key: String, value: AnyRef): SseConnectActionBuilder

    Set an HTML form parameter

    Set an HTML form parameter

    key

    the parameter key, expressed as a Gatling Expression Language String

    value

    the parameter static value

    returns

    a new HttpRequestActionBuilder instance

    Definition Classes
    RequestWithBodyActionBuilder
    Annotations
    @NonNull()
  36. def formParam(key: Function[Session, String], value: String): SseConnectActionBuilder

    Set an HTML form parameter

    Set an HTML form parameter

    key

    the parameter key, expressed as a function

    value

    the parameter value, expressed as a Gatling Expression Language String

    returns

    a new HttpRequestActionBuilder instance

    Definition Classes
    RequestWithBodyActionBuilder
    Annotations
    @NonNull()
  37. def formParam(key: String, value: String): SseConnectActionBuilder

    Set an HTML form parameter

    Set an HTML form parameter

    key

    the parameter key, expressed as a Gatling Expression Language String

    value

    the parameter value, expressed as a Gatling Expression Language String

    returns

    a new HttpRequestActionBuilder instance

    Definition Classes
    RequestWithBodyActionBuilder
    Annotations
    @NonNull()
  38. def formParamMap(map: Function[Session, Map[String, AnyRef]]): SseConnectActionBuilder

    Set multiple form parameters

    Set multiple form parameters

    map

    the parameters, expressed as a function

    returns

    a new HttpRequestActionBuilder instance

    Definition Classes
    RequestWithBodyActionBuilder
    Annotations
    @NonNull()
  39. def formParamMap(map: Map[String, AnyRef]): SseConnectActionBuilder

    Set multiple form parameters

    Set multiple form parameters

    map

    the static parameters

    returns

    a new HttpRequestActionBuilder instance

    Definition Classes
    RequestWithBodyActionBuilder
    Annotations
    @NonNull()
  40. def formParamSeq(seq: Function[Session, List[Entry[String, AnyRef]]]): SseConnectActionBuilder

    Set multiple form parameters

    Set multiple form parameters

    seq

    the parameters, expressed as a function

    returns

    a new HttpRequestActionBuilder instance

    Definition Classes
    RequestWithBodyActionBuilder
    Annotations
    @NonNull()
  41. def formParamSeq(seq: List[Entry[String, AnyRef]]): SseConnectActionBuilder

    Set multiple form parameters

    Set multiple form parameters

    seq

    the static parameters

    returns

    a new HttpRequestActionBuilder instance

    Definition Classes
    RequestWithBodyActionBuilder
    Annotations
    @NonNull()
  42. def formUpload(name: Function[Session, String], filePath: Function[Session, String]): SseConnectActionBuilder

    Set a form file upload

    Set a form file upload

    name

    the name of the file part, expressed as a function

    filePath

    the path of the file, either relative to the root of the classpath, or absolute, expressed as a function

    returns

    a new HttpRequestActionBuilder instance

    Definition Classes
    RequestWithBodyActionBuilder
    Annotations
    @NonNull()
  43. def formUpload(name: String, filePath: Function[Session, String]): SseConnectActionBuilder

    Set a form file upload

    Set a form file upload

    name

    the name of the file part, expressed as a Gatling Expression Language String

    filePath

    the path of the file, either relative to the root of the classpath, or absolute, expressed as a function

    returns

    a new HttpRequestActionBuilder instance

    Definition Classes
    RequestWithBodyActionBuilder
    Annotations
    @NonNull()
  44. def formUpload(name: Function[Session, String], filePath: String): SseConnectActionBuilder

    Set a form file upload

    Set a form file upload

    name

    the name of the file part, expressed as a function

    filePath

    the path of the file, either relative to the root of the classpath, or absolute, expressed as a Gatling Expression Language String

    returns

    a new HttpRequestActionBuilder instance

    Definition Classes
    RequestWithBodyActionBuilder
    Annotations
    @NonNull()
  45. def formUpload(name: String, filePath: String): SseConnectActionBuilder

    Set a form file upload

    Set a form file upload

    name

    the name of the file part, expressed as a Gatling Expression Language String

    filePath

    the path of the file, either relative to the root of the classpath, or absolute, expressed as a Gatling Expression Language String

    returns

    a new HttpRequestActionBuilder instance

    Definition Classes
    RequestWithBodyActionBuilder
    Annotations
    @NonNull()
  46. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  47. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  48. def header(name: CharSequence, value: Function[Session, String]): SseConnectActionBuilder

    Set a header

    Set a header

    name

    the static header name

    value

    the header value, expressed as a function

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  49. def header(name: CharSequence, value: String): SseConnectActionBuilder

    Set a header

    Set a header

    name

    the static header name

    value

    the header value, expressed as a Gatling Expression Language String

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  50. def headers(headers: Map[_ <: CharSequence, String]): SseConnectActionBuilder

    Set multiple headers

    Set multiple headers

    headers

    the headers, names are static but values are expressed as a Gatling Expression Language String

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  51. def ignoreProtocolHeaders(): SseConnectActionBuilder

    Ignore common headers set in the Http protocol configuration

    Ignore common headers set in the Http protocol configuration

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  52. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  53. def make(f: Function[SseConnectRequestBuilder, SseConnectRequestBuilder]): SseConnectActionBuilder
    Definition Classes
    SseConnectActionBuilderSseAwaitActionBuilderRequestActionBuilder
    Annotations
    @Override()
  54. def multivaluedFormParam(key: Function[Session, String], values: Function[Session, List[AnyRef]]): SseConnectActionBuilder

    Set an HTML form multivalued parameter

    Set an HTML form multivalued parameter

    key

    the parameter key, expressed as a function

    values

    the parameter values, expressed as a function

    returns

    a new HttpRequestActionBuilder instance

    Definition Classes
    RequestWithBodyActionBuilder
    Annotations
    @NonNull()
  55. def multivaluedFormParam(key: String, values: Function[Session, List[AnyRef]]): SseConnectActionBuilder

    Set an HTML form multivalued parameter

    Set an HTML form multivalued parameter

    key

    the parameter key, expressed as a Gatling Expression Language String

    values

    the parameter values, expressed as a function

    returns

    a new HttpRequestActionBuilder instance

    Definition Classes
    RequestWithBodyActionBuilder
    Annotations
    @NonNull()
  56. def multivaluedFormParam(key: Function[Session, String], values: List[AnyRef]): SseConnectActionBuilder

    Set an HTML form multivalued parameter

    Set an HTML form multivalued parameter

    key

    the parameter key, expressed as a function

    values

    the static parameter values

    returns

    a new HttpRequestActionBuilder instance

    Definition Classes
    RequestWithBodyActionBuilder
    Annotations
    @NonNull()
  57. def multivaluedFormParam(key: String, values: String): SseConnectActionBuilder

    Set an HTML form multivalued parameter

    Set an HTML form multivalued parameter

    key

    the parameter key, expressed as a Gatling Expression Language String

    values

    the parameter values, as a Gatling EL string

    returns

    a new HttpRequestActionBuilder instance

    Definition Classes
    RequestWithBodyActionBuilder
    Annotations
    @NonNull()
  58. def multivaluedFormParam(key: String, values: List[AnyRef]): SseConnectActionBuilder

    Set an HTML form multivalued parameter

    Set an HTML form multivalued parameter

    key

    the parameter key, expressed as a Gatling Expression Language String

    values

    the static parameter values

    returns

    a new HttpRequestActionBuilder instance

    Definition Classes
    RequestWithBodyActionBuilder
    Annotations
    @NonNull()
  59. def multivaluedQueryParam(name: Function[Session, String], values: Function[Session, List[AnyRef]]): SseConnectActionBuilder

    Set a multivalued query parameter

    Set a multivalued query parameter

    name

    the name of the parameter, expressed as a function

    values

    the list of values of the parameter, expressed as a function

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  60. def multivaluedQueryParam(name: String, values: Function[Session, List[AnyRef]]): SseConnectActionBuilder

    Set a multivalued query parameter

    Set a multivalued query parameter

    name

    the name of the parameter, expressed as a Gatling Expression Language String

    values

    the list of values of the parameter, expressed as a function

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  61. def multivaluedQueryParam(name: Function[Session, String], values: String): SseConnectActionBuilder

    Set a multivalued query parameter

    Set a multivalued query parameter

    name

    the name of the parameter, expressed as a function

    values

    the list of values of the parameter, expressed as a Gatling Expression Language String

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  62. def multivaluedQueryParam(name: String, values: String): SseConnectActionBuilder

    Set a multivalued query parameter

    Set a multivalued query parameter

    name

    the name of the parameter, expressed as a Gatling Expression Language String

    values

    the list of values of the parameter, expressed as a Gatling Expression Language String

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  63. def multivaluedQueryParam(name: Function[Session, String], values: List[AnyRef]): SseConnectActionBuilder

    Set a multivalued query parameter

    Set a multivalued query parameter

    name

    the name of the parameter, expressed as a function

    values

    the static list of values of the parameter

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  64. def multivaluedQueryParam(name: String, values: List[AnyRef]): SseConnectActionBuilder

    Set a multivalued query parameter

    Set a multivalued query parameter

    name

    the name of the parameter, expressed as a Gatling Expression Language String

    values

    the static list of values of the parameter

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  65. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  66. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  67. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  68. def processRequestBody(processor: Function[Body, _ <: Body]): SseConnectActionBuilder

    Define to transform the request body before writing it on the wire

    Define to transform the request body before writing it on the wire

    processor

    the processing function

    returns

    a new HttpRequestActionBuilder instance

    Definition Classes
    RequestWithBodyActionBuilder
    Annotations
    @NonNull()
  69. def proxy(proxy: Proxy): SseConnectActionBuilder

    Define a Proxy to be used for this request

    Define a Proxy to be used for this request

    proxy

    the proxy

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  70. def queryParam(name: Function[Session, String], value: Function[Session, AnyRef]): SseConnectActionBuilder

    Set some query parameter

    Set some query parameter

    name

    the name of the parameter, expressed as a function

    value

    the value of the parameter, expressed as a function

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  71. def queryParam(name: String, value: Function[Session, AnyRef]): SseConnectActionBuilder

    Set some query parameter

    Set some query parameter

    name

    the name of the parameter, expressed as a Gatling Expression Language String

    value

    the value of the parameter, expressed as a function

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  72. def queryParam(name: Function[Session, String], value: AnyRef): SseConnectActionBuilder

    Set some query parameter

    Set some query parameter

    name

    the name of the parameter, expressed as a function

    value

    the static value of the parameter

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  73. def queryParam(name: String, value: AnyRef): SseConnectActionBuilder

    Set some query parameter

    Set some query parameter

    name

    the name of the parameter, expressed as a Gatling Expression Language String

    value

    the static value of the parameter

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  74. def queryParam(name: Function[Session, String], value: String): SseConnectActionBuilder

    Set some query parameter

    Set some query parameter

    name

    the name of the parameter, expressed as a function

    value

    the value of the parameter, expressed as a Gatling Expression Language String

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  75. def queryParam(name: String, value: String): SseConnectActionBuilder

    Set some query parameter

    Set some query parameter

    name

    the name of the parameter, expressed as a Gatling Expression Language String

    value

    the value of the parameter, expressed as a Gatling Expression Language String

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  76. def queryParamMap(map: Function[Session, Map[String, AnyRef]]): SseConnectActionBuilder

    Set multiple query params

    Set multiple query params

    map

    a Map of query params, expressed as a function

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  77. def queryParamMap(map: String): SseConnectActionBuilder

    Set multiple query params

    Set multiple query params

    map

    a Map of query params, expressed as a Gatling Expression Language String

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  78. def queryParamMap(map: Map[String, AnyRef]): SseConnectActionBuilder

    Set multiple query params

    Set multiple query params

    map

    a static Map of query params

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  79. def queryParamSeq(seq: Function[Session, List[Entry[String, AnyRef]]]): SseConnectActionBuilder

    Set multiple query params

    Set multiple query params

    seq

    a List of query params, expressed as a function

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  80. def queryParamSeq(seq: String): SseConnectActionBuilder

    Set multiple query params

    Set multiple query params

    seq

    a List of query params, expressed as a Gatling Expression Language String

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  81. def queryParamSeq(seq: List[Entry[String, AnyRef]]): SseConnectActionBuilder

    Set multiple query params

    Set multiple query params

    seq

    a static List of query params

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  82. def sign(calculator: BiFunction[Request, Session, Request]): SseConnectActionBuilder

    Provide a function to sign the requests before writing them on the wire.

    Provide a function to sign the requests before writing them on the wire. This version provides access to the session.

    calculator

    the signing function

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  83. def sign(calculator: Function[Request, Request]): SseConnectActionBuilder

    Provide a function to sign the requests before writing them on the wire

    Provide a function to sign the requests before writing them on the wire

    calculator

    the signing function

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  84. def signWithOAuth1(consumerKey: Function[Session, String], clientSharedSecret: Function[Session, String], token: Function[Session, String], tokenSecret: Function[Session, String]): SseConnectActionBuilder

    Instruct sign the request with OAuth1 before writing it on the wire

    Instruct sign the request with OAuth1 before writing it on the wire

    consumerKey

    the consumerKey, expressed as a function

    clientSharedSecret

    the clientSharedSecret, expressed as a function

    token

    the token, expressed as a function

    tokenSecret

    the tokenSecret, expressed as a function

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  85. def signWithOAuth1(consumerKey: String, clientSharedSecret: String, token: String, tokenSecret: String): SseConnectActionBuilder

    Instruct sign the request with OAuth1 before writing it on the wire

    Instruct sign the request with OAuth1 before writing it on the wire

    consumerKey

    the consumerKey, expressed as a Gatling Expression Language String

    clientSharedSecret

    the clientSharedSecret, expressed as a Gatling Expression Language String

    token

    the token, expressed as a Gatling Expression Language String

    tokenSecret

    the tokenSecret, expressed as a Gatling Expression Language String

    returns

    a new DSL instance

    Definition Classes
    RequestActionBuilder
    Annotations
    @NonNull()
  86. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  87. def toChainBuilder(): ChainBuilder
    Definition Classes
    ActionBuilder → Executable
  88. def toString(): String
    Definition Classes
    AnyRef → Any
  89. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  90. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  91. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from SseAwaitActionBuilder[SseConnectActionBuilder, SseConnectRequestBuilder]

Inherited from RequestWithBodyActionBuilder[SseConnectActionBuilder, SseConnectRequestBuilder]

Inherited from RequestActionBuilder[SseConnectActionBuilder, SseConnectRequestBuilder]

Inherited from ActionBuilder

Inherited from Executable

Inherited from AnyRef

Inherited from Any

Ungrouped