final case class Strict(data: ByteString) extends javadsl.model.ws.BinaryMessage with BinaryMessage with Product with Serializable
A strict BinaryMessage that contains the complete data as a akka.util.ByteString.
- Source
- Message.scala
- Alphabetic
- By Inheritance
- Strict
- Serializable
- Product
- Equals
- BinaryMessage
- Message
- BinaryMessage
- Message
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new Strict(data: ByteString)
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
- BinaryMessage → Message
- def asScala: BinaryMessage
- Definition Classes
- BinaryMessage → BinaryMessage → 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
- BinaryMessage → Message
- val data: ByteString
- def dataStream: Source[ByteString, _]
The contents of this message as a stream.
The contents of this message as a stream.
- Definition Classes
- Strict → BinaryMessage
- def getStreamedData: Source[ByteString, _]
Java API
Java API
- Definition Classes
- BinaryMessage → BinaryMessage
- def getStrictData: ByteString
Java API
Java API
- Definition Classes
- Strict → BinaryMessage
- def isStrict: Boolean
Is this message a strict one?
- 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
- BinaryMessage → Message
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def toStrict(timeoutMillis: Long, materializer: Materializer): CompletionStage[Strict]
- Definition Classes
- BinaryMessage → BinaryMessage
- 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
- def toString(): String
- Definition Classes
- Strict → AnyRef → Any