final case class Streamed(textStream: Source[String, _]) extends javadsl.model.ws.TextMessage with TextMessage with Product with Serializable
- Source
- Message.scala
- Alphabetic
- By Inheritance
- Streamed
- Serializable
- Serializable
- Product
- Equals
- TextMessage
- Message
- TextMessage
- Message
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Value Members
-
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
- TextMessage → Message
-
def
asScala: TextMessage
- Definition Classes
- TextMessage → TextMessage → Message
-
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
- TextMessage → Message
-
def
getStreamedText: Source[String, _]
Java API
Java API
- Definition Classes
- TextMessage → TextMessage
-
def
getStrictText: String
Java API
Java API
- Definition Classes
- Streamed → TextMessage
-
def
isStrict: Boolean
Is this message a strict one?
Is this message a strict one?
- Definition Classes
- Streamed → TextMessage
-
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
- TextMessage → Message
-
val
textStream: Source[String, _]
The contents of this message as a stream.
The contents of this message as a stream.
- Definition Classes
- Streamed → TextMessage
-
def
toStrict(timeoutMillis: Long, materializer: Materializer): CompletionStage[Strict]
- Definition Classes
- TextMessage → TextMessage
-
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
-
def
toString(): String
- Definition Classes
- Streamed → AnyRef → Any