Packages

final case class Strict(data: ByteString) extends javadsl.model.ws.BinaryMessage with BinaryMessage with Product with Serializable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Strict
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. BinaryMessage
  7. Message
  8. BinaryMessage
  9. Message
  10. AnyRef
  11. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Strict(data: ByteString)

Value Members

  1. def asBinaryMessage: javadsl.model.ws.BinaryMessage

    Returns this BinaryMessage if it is a binary message, throws otherwise.

    Returns this BinaryMessage if it is a binary message, throws otherwise.

    Definition Classes
    BinaryMessageMessage
  2. def asScala: BinaryMessage
    Definition Classes
    BinaryMessageBinaryMessageMessage
  3. def asTextMessage: javadsl.model.ws.TextMessage

    Returns this TextMessage if it is a text message, throws otherwise.

    Returns this TextMessage if it is a text message, throws otherwise.

    Definition Classes
    BinaryMessageMessage
  4. val data: ByteString
  5. def dataStream: Source[ByteString, _]

    The contents of this message as a stream.

    The contents of this message as a stream.

    Definition Classes
    StrictBinaryMessage
  6. def getStreamedData: Source[ByteString, _]

    Java API

    Java API

    Definition Classes
    BinaryMessageBinaryMessage
  7. def getStrictData: ByteString

    Java API

    Java API

    Definition Classes
    StrictBinaryMessage
  8. def isStrict: Boolean

    Is this message a strict one?

    Is this message a strict one?

    Definition Classes
    StrictBinaryMessage
  9. def isText: Boolean

    Is this message a text message? If true, asTextMessage will return this text message, if false, asBinaryMessage will return this binary message.

    Is this message a text message? If true, asTextMessage will return this text message, if false, asBinaryMessage will return this binary message.

    Definition Classes
    BinaryMessageMessage
  10. def toStrict(timeoutMillis: Long, materializer: Materializer): CompletionStage[Strict]
    Definition Classes
    BinaryMessageBinaryMessage
  11. def toStrict(timeout: FiniteDuration)(implicit fm: Materializer): Future[Strict]

    Collects all possible parts and returns a potentially future Strict Message for easier processing.

    Collects all possible parts and returns a potentially future Strict Message for easier processing. The Future is failed with an TimeoutException if the stream isn't completed after the given timeout.

    Definition Classes
    BinaryMessage
  12. def toString(): String
    Definition Classes
    Strict → AnyRef → Any