MultipartParser

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

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)(`evidence$1`: Sync[F]): (F, Byte) => Multipart[F]
def parseStreamedFile[F[_]](boundary: Boundary, blocker: Blocker, limit: Int, maxSizeBeforeWrite: Int, maxParts: Int, failOnLimit: Boolean)(`evidence$8`: Sync[F], `evidence$9`: ContextShift[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.

def parseToPartsStream[F[_]](boundary: Boundary, limit: Int)(`evidence$2`: Sync[F]): (F, Byte) => Part[F]
def parseToPartsStreamedFile[F[_]](boundary: Boundary, blocker: Blocker, limit: Int, maxSizeBeforeWrite: Int, maxParts: Int, failOnLimit: Boolean)(`evidence$10`: Sync[F], `evidence$11`: ContextShift[F]): (F, Byte) => Part[F]

Concrete fields

val StartLineBytesN: Boundary => Array[Byte]