Interface Multipart.ByteRanges
- All Superinterfaces:
- Multipart
- All Known Subinterfaces:
- Multipart.ByteRanges.Strict
- All Known Implementing Classes:
- Multipart.ByteRanges,- Multipart.ByteRanges$.Strict
- Enclosing interface:
- Multipart
Model for `multipart/byteranges` content as defined by
 https://tools.ietf.org/html/rfc7233#section-5.4.1 and
 https://tools.ietf.org/html/rfc7233#appendix-A
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic interfacestatic interfaceNested classes/interfaces inherited from interface org.apache.pekko.http.javadsl.model.MultipartMultipart.ByteRanges, Multipart.FormData, Multipart.General
- 
Method SummaryModifier and TypeMethodDescriptionorg.apache.pekko.stream.javadsl.Source<? extends Multipart.ByteRanges.BodyPart,Object> getParts()toStrict(long timeoutMillis, org.apache.pekko.stream.Materializer materializer) Converts this content into its strict counterpart.Methods inherited from interface org.apache.pekko.http.javadsl.model.MultipartgetMediaType, toEntity, toEntity
- 
Method Details- 
getPartsorg.apache.pekko.stream.javadsl.Source<? extends Multipart.ByteRanges.BodyPart,Object> getParts()
- 
toStrictCompletionStage<Multipart.ByteRanges.Strict> toStrict(long timeoutMillis, org.apache.pekko.stream.Materializer materializer) Description copied from interface:MultipartConverts this content into its strict counterpart. The given `timeout` denotes the max time that an individual part must be read in. The CompletionStage is failed with an TimeoutException if one part isn't read completely after the given timeout.
 
-