MultipartParser

A low-level multipart-parsing pipe. Most end users will prefer EntityDecoder[Multipart].

class Object
trait Matchable
class Any

Value members

Concrete methods

def parseStreamed[F[_]](boundary: Boundary, limit: Int)(implicit evidence$1: Concurrent[F]): (F, Byte) => Multipart[F]
def parseToPartsStream[F[_]](boundary: Boundary, limit: Int)(implicit F: Concurrent[F]): (F, Byte) => Part[F]

Deprecated and Inherited methods

@deprecated("Use parseSupervisedFile", "0.23")
def parseStreamedFile[F[_]](boundary: Boundary, limit: Int, maxSizeBeforeWrite: Int, maxParts: Int, failOnLimit: Boolean)(implicit evidence$1: Concurrent[F], evidence$2: Files[F]): (F, Byte) => Multipart[F]

Same as the other streamed parsing, except after a particular size, it buffers on a File.

Same as the other streamed parsing, except after a particular size, it buffers on a File.

Deprecated
Inherited from
MultipartParserPlatform
@deprecated("Use parseSupervisedFile", "0.23")
def parseToPartsStreamedFile[F[_]](boundary: Boundary, limit: Int, maxSizeBeforeWrite: Int, maxParts: Int, failOnLimit: Boolean)(implicit evidence$3: Concurrent[F], evidence$4: Files[F]): (F, Byte) => Part[F]
Deprecated
Inherited from
MultipartParserPlatform

Concrete fields

val StartLineBytesN: Boundary => Array[Byte]