Packages

  • package root
    Definition Classes
    root
  • package org
    Definition Classes
    root
  • package http4s
    Definition Classes
    org
  • package multipart

    This package is the start of a multipart implementation for http4s.

    This package is the start of a multipart implementation for http4s. It is still deficient in a few ways:

    - All encoding is chunked transfers, except for entities small enough to fit into the blaze buffer. This irritates some server implementations.

    - When decoding, chunks are kept in memory. Large ones should be buffered to a temp file.

    - It's a bit handwavy around character sets. Things probably go horribly wrong if you're not UTF-8.

    - This module is lightly tested, and its API should be considered experimental.

    Enter this package at your own risk, but we'd love the feedback.

    Definition Classes
    http4s
  • Boundary
  • Multipart
  • MultipartParser
  • Part

object Part extends Serializable

Source
Part.scala
Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Part
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def fileData[F[_]](name: String, filename: String, entityBody: EntityBody[F], headers: Header*)(implicit arg0: Sync[F]): Part[F]
  2. def fileData[F[_]](name: String, resource: URL, blockingExecutionContext: ExecutionContext, headers: Header*)(implicit arg0: Sync[F], arg1: ContextShift[F]): Part[F]
  3. def fileData[F[_]](name: String, file: File, blockingExecutionContext: ExecutionContext, headers: Header*)(implicit arg0: Sync[F], arg1: ContextShift[F]): Part[F]
  4. def formData[F[_]](name: String, value: String, headers: Header*)(implicit arg0: Sync[F]): Part[F]

Deprecated Value Members

  1. def empty[F[_]]: Part[F]
    Annotations
    @deprecated
    Deprecated

    (Since version 0.18.12)