Packages

final case class Strict(text: String) extends javadsl.model.ws.TextMessage with TextMessage with Product with Serializable

A strict TextMessage that contains the complete data as a String.

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

Instance Constructors

  1. new Strict(text: String)

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
    TextMessageMessage
  2. def asScala: TextMessage
    Definition Classes
    TextMessageTextMessageMessage
  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
    TextMessageMessage
  4. def getStreamedText: Source[String, _]

    Java API

    Java API

    Definition Classes
    TextMessageTextMessage
  5. def getStrictText: String

    Java API

    Java API

    Definition Classes
    StrictTextMessage
  6. def isStrict: Boolean

    Is this message a strict one?

    Is this message a strict one?

    Definition Classes
    StrictMessage
  7. 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
    TextMessageMessage
  8. def productElementNames: Iterator[String]
    Definition Classes
    Product
  9. val text: String
  10. def textStream: Source[String, _]

    The contents of this message as a stream.

    The contents of this message as a stream.

    Definition Classes
    StrictTextMessage
  11. def toStrict(timeoutMillis: Long, materializer: Materializer): CompletionStage[Strict]
    Definition Classes
    TextMessageTextMessage
  12. 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
    TextMessage
  13. def toString(): String
    Definition Classes
    Strict → AnyRef → Any