MultipartParser

org.http4s.multipart.MultipartParser$

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

Attributes

Source
MultipartParser.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Self type

Members list

Value members

Concrete methods

def parseStreamed[F[_] : Concurrent](boundary: Boundary, limit: Int): (F, Byte) => Multipart[F]

Attributes

Source
MultipartParser.scala
def parseToPartsStream[F[_]](boundary: Boundary, limit: Int)(implicit F: Concurrent[F]): (F, Byte) => Part[F]

Attributes

Source
MultipartParser.scala

Deprecated methods

def parseStreamedFile[F[_] : Files](boundary: Boundary, limit: Int, maxSizeBeforeWrite: Int, maxParts: Int, failOnLimit: Boolean): (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.

Attributes

Deprecated
true
Source
MultipartParser.scala
def parseToPartsStreamedFile[F[_] : Files](boundary: Boundary, limit: Int, maxSizeBeforeWrite: Int, maxParts: Int, failOnLimit: Boolean): (F, Byte) => Part[F]

Attributes

Deprecated
true
Source
MultipartParser.scala

Concrete fields