Package

org

http4s

Permalink

package http4s

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. http4s
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type AuthScheme = CaseInsensitiveString

    Permalink
  2. final case class AuthedRequest[F[_], A](authInfo: A, req: Request[F]) extends Product with Serializable

    Permalink
  3. type AuthedRoutes[T, F[_]] = Kleisli[[β$1$]OptionT[F, β$1$], AuthedRequest[F, T], Response[F]]

    Permalink

    The type parameters need to be in this order to make partial unification trigger.

    The type parameters need to be in this order to make partial unification trigger. See https://github.com/http4s/http4s/issues/1506

  4. final case class BasicCredentials(username: String, password: String) extends Product with Serializable

    Permalink
  5. sealed trait CacheDirective extends Product with Renderable

    Permalink
  6. type Callback[A] = (Either[Throwable, A]) ⇒ Unit

    Permalink
  7. final case class Challenge(scheme: String, realm: String, params: Map[String, String] = Map.empty) extends Renderable with Product with Serializable

    Permalink
  8. final case class Charset extends Renderable with Product with Serializable

    Permalink
  9. sealed abstract class CharsetRange extends HasQValue with Renderable

    Permalink
  10. class ContentCoding extends HasQValue with Ordered[ContentCoding] with Renderable

    Permalink
  11. sealed abstract class Credentials extends Renderable

    Permalink
  12. trait DecodeFailure extends RuntimeException with MessageFailure

    Permalink

    Indicates a problem decoding a Message.

    Indicates a problem decoding a Message. This may either be a problem with the entity headers or with the entity itself.

  13. type DecodeResult[F[_], A] = EitherT[F, DecodeFailure, A]

    Permalink
  14. final case class Entity[+F[_]](body: EntityBody[F], length: Option[Long] = None) extends Product with Serializable

    Permalink
  15. type EntityBody[+F[_]] = Stream[F, Byte]

    Permalink
  16. trait EntityDecoder[F[_], T] extends AnyRef

    Permalink

    A type that can be used to decode a Message EntityDecoder is used to attempt to decode a Message returning the entire resulting A.

    A type that can be used to decode a Message EntityDecoder is used to attempt to decode a Message returning the entire resulting A. If an error occurs it will result in a failed effect. The default decoders provided here are not streaming, but one could implement a streaming decoder by having the value of A be some kind of streaming construct.

    T

    result type produced by the decoder

    Annotations
    @implicitNotFound( ... )
  17. trait EntityEncoder[F[_], A] extends AnyRef

    Permalink
    Annotations
    @implicitNotFound( ... )
  18. type EventStream[F[_]] = Stream[F, ServerSentEvent]

    Permalink

    A stream of server-sent events

  19. trait HasQValue extends AnyRef

    Permalink
  20. sealed trait Header extends Renderable with Product

    Permalink

    Abstract representation o the HTTP header

    Abstract representation o the HTTP header

    See also

    org.http4s.HeaderKey

  21. sealed trait HeaderKey extends AnyRef

    Permalink
  22. final class Headers extends AnyVal

    Permalink

    A collection of HTTP Headers

  23. type Http[F[_], G[_]] = Kleisli[F, Request[G], Response[G]]

    Permalink

    A kleisli with a Request input and a Response output.

    A kleisli with a Request input and a Response output. This type is useful for writing middleware that are polymorphic over the return type F.

  24. implicit final class Http4sLiteralSyntax extends AnyVal

    Permalink
  25. final case class Http4sVersion(major: Int, minor: Int) extends Product with Serializable

    Permalink
  26. type HttpApp[F[_]] = Kleisli[F, Request[F], Response[F]]

    Permalink

    A kleisli with a Request input and a Response output, such that the response effect is the same as the request and response bodies'.

    A kleisli with a Request input and a Response output, such that the response effect is the same as the request and response bodies'. An HTTP app is total on its inputs. An HTTP app may be run by a server, and a client can be converted to or from an HTTP app.

  27. trait HttpCodec[A] extends Renderer[A]

    Permalink
  28. class HttpDate extends Renderable with Ordered[HttpDate]

    Permalink

    An HTTP-date value represents time as an instance of Coordinated Universal Time (UTC).

    An HTTP-date value represents time as an instance of Coordinated Universal Time (UTC). It expresses time at a resolution of one second. By using it over java.time.Instant in the model, we assure that if two headers render equally, their values are equal.

    See also

    https://tools.ietf.org/html/rfc7231#page65

  29. type HttpRoutes[F[_]] = Kleisli[[β$0$]OptionT[F, β$0$], Request[F], Response[F]]

    Permalink

    A kleisl with a Request input and a Response output, such that the response effect is an optional inside the effect of the request and response bodies.

    A kleisl with a Request input and a Response output, such that the response effect is an optional inside the effect of the request and response bodies. HTTP routes can conveniently be constructed from a partial function and combined as a SemigroupK.

  30. final case class HttpVersion extends Renderable with Ordered[HttpVersion] with Product with Serializable

    Permalink

    An HTTP version, as seen on the start line of an HTTP request or response.

    An HTTP version, as seen on the start line of an HTTP request or response.

    See also

    [http://tools.ietf.org/html/rfc7230#section-2.6 RFC 7320, Section 2.6

  31. final case class InvalidBodyException(msg: String) extends Exception with NoStackTrace with Product with Serializable

    Permalink

    Exception dealing with invalid body

    Exception dealing with invalid body

    msg

    description if what makes the body invalid

  32. final case class InvalidMessageBodyFailure(details: String, cause: Option[Throwable] = None) extends RuntimeException with MessageBodyFailure with Product with Serializable

    Permalink

    Indicates a semantic error decoding the body of an HTTP Message.

  33. final case class InvalidResponseException(msg: String) extends Exception with NoStackTrace with Product with Serializable

    Permalink

    Exception dealing with invalid response

    Exception dealing with invalid response

    msg

    description if what makes the response invalid

  34. final case class LanguageTag(primaryTag: String, q: QValue = QValue.One, subTags: List[String] = Nil) extends Renderable with Product with Serializable

    Permalink
  35. final case class MalformedMessageBodyFailure(details: String, cause: Option[Throwable] = None) extends RuntimeException with MessageBodyFailure with Product with Serializable

    Permalink

    Indicates an syntactic error decoding the body of an HTTP Message.

  36. sealed class MediaRange extends AnyRef

    Permalink
  37. sealed class MediaType extends MediaRange

    Permalink
  38. final case class MediaTypeMismatch(messageType: MediaType, expected: Set[MediaRange]) extends UnsupportedMediaTypeFailure with Product with Serializable

    Permalink

    Indicates that no EntityDecoder matches the MediaType of the Message being decoded

  39. final case class MediaTypeMissing(expected: Set[MediaRange]) extends UnsupportedMediaTypeFailure with Product with Serializable

    Permalink

    Indicates that a Message attempting to be decoded has no MediaType and no EntityDecoder was lenient enough to accept it.

  40. sealed trait Message[F[_]] extends AnyRef

    Permalink

    Represents a HTTP Message.

    Represents a HTTP Message. The interesting subclasses are Request and Response.

  41. trait MessageBodyFailure extends RuntimeException with DecodeFailure

    Permalink

    Indicates a problem decoding a Message body.

  42. trait MessageFailure extends RuntimeException

    Permalink

    Indicates a failure to handle an HTTP Message.

  43. sealed abstract case class Method extends Renderable with Semantics with Product with Serializable

    Permalink

    An HTTP method.

    An HTTP method.

    See also

    [http://www.iana.org/assignments/http-methods/http-methods.xhtml IANA HTTP Method Registry]

    [http://tools.ietf.org/html/rfc7231#section-4 RFC7321, Section 4]

  44. final case class ParseFailure(sanitized: String, details: String) extends RuntimeException with MessageFailure with NoStackTrace with Product with Serializable

    Permalink

    Indicates an error parsing an HTTP Message.

    Indicates an error parsing an HTTP Message.

    sanitized

    May safely be displayed to a client to describe an error condition. Should not echo any part of a Request.

    details

    Contains any relevant details omitted from the sanitized version of the error. This may freely echo a Request.

  45. type ParseResult[+A] = Either[ParseFailure, A]

    Permalink
  46. final class QValue extends AnyVal with Ordered[QValue]

    Permalink

    A Quality Value.

    A Quality Value. Represented as thousandths for an exact representation rounded to three decimal places.

    See also

    RFC 2616, Section 3.9

  47. final class Query extends QueryOps with Renderable

    Permalink

    Collection representation of a query string

    Collection representation of a query string

    It is a indexed sequence of key and maybe a value pairs which maps precisely to a query string, modulo the identity of separators.

    When rendered, the resulting String will have the pairs separated by '&' while the key is separated from the value with '='

  48. trait QueryOps extends AnyRef

    Permalink
  49. trait QueryParam[T] extends AnyRef

    Permalink

    type class defining the key of a query parameter Usually used in conjunction with QueryParamEncoder and QueryParamDecoder

  50. trait QueryParamDecoder[T] extends AnyRef

    Permalink

    Type class defining how to decode a QueryParameterValue into a T

    Type class defining how to decode a QueryParameterValue into a T

    See also

    QueryParamCodecLaws

  51. trait QueryParamEncoder[T] extends AnyRef

    Permalink

    Type class defining how to encode a T as a QueryParameterValues

    Type class defining how to encode a T as a QueryParameterValues

    See also

    QueryParamCodecLaws

  52. trait QueryParamKeyLike[T] extends AnyRef

    Permalink
  53. final case class QueryParameterKey(value: String) extends AnyVal with Product with Serializable

    Permalink
  54. final case class QueryParameterValue(value: String) extends AnyVal with Product with Serializable

    Permalink
  55. final case class RangeUnit(value: String) extends Renderable with Product with Serializable

    Permalink
  56. sealed abstract case class Request[F[_]] extends Message[F] with Product with Serializable

    Permalink

    Representation of an incoming HTTP message

    Representation of an incoming HTTP message

    A Request encapsulates the entirety of the incoming HTTP request including the status line, headers, and a possible request body.

  57. final case class RequestCookie(name: String, content: String) extends Renderable with Product with Serializable

    Permalink
  58. final class RequestCookieJar extends AnyVal

    Permalink
  59. final case class Response[F[_]](status: Status = Status.Ok, httpVersion: HttpVersion = HttpVersion.`HTTP/1.1`, headers: Headers = Headers.empty, body: EntityBody[F] = EmptyBody, attributes: Vault = Vault.empty) extends Message[F] with Product with Serializable

    Permalink

    Representation of the HTTP response to send back to the client

    Representation of the HTTP response to send back to the client

    status

    Status code and message

    headers

    Headers containing all response headers

    body

    EntityBody[F] representing the possible body of the response

    attributes

    Vault containing additional parameters which may be used by the http4s backend for additional processing such as java.io.File object

  60. final case class ResponseCookie(name: String, content: String, expires: Option[HttpDate] = None, maxAge: Option[Long] = None, domain: Option[String] = None, path: Option[String] = None, secure: Boolean = false, httpOnly: Boolean = false, extension: Option[String] = None) extends Renderable with Product with Serializable

    Permalink
  61. final case class ServerSentEvent(data: String, eventType: Option[String] = None, id: Option[EventId] = None, retry: Option[Long] = None) extends Renderable with Product with Serializable

    Permalink
  62. final case class ServerSoftware(product: String, productVersion: Option[String] = None, comment: Option[String] = None) extends Product with Serializable

    Permalink
  63. sealed abstract case class Status extends Ordered[Status] with Renderable with Product with Serializable

    Permalink

    Representation of the HTTP response code and reason

    Representation of the HTTP response code and reason

    Note: the reason is not important to the protocol and is not considered in equality checks.

    See also

    [http://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml IANA Status Code Registry]

    [http://tools.ietf.org/html/rfc7231#section-6 RFC7231, Section 6]

  64. class TransferCoding extends Ordered[TransferCoding] with Renderable

    Permalink
  65. sealed abstract class UnsupportedMediaTypeFailure extends RuntimeException with DecodeFailure with NoStackTrace

    Permalink

    Indicates that a Message came with no supported MediaType.

  66. final case class Uri(scheme: Option[Scheme] = None, authority: Option[Authority] = None, path: Path = "", query: Query = Query.empty, fragment: Option[Fragment] = None) extends QueryOps with Renderable with Product with Serializable

    Permalink

    Representation of the Request URI

    Representation of the Request URI

    scheme

    optional Uri Scheme. eg, http, https

    authority

    optional Uri Authority. eg, localhost:8080, www.foo.bar

    path

    url-encoded string representation of the path component of the Uri.

    query

    optional Query. url-encoded.

    fragment

    optional Uri Fragment. url-encoded.

  67. final case class UriTemplate(scheme: Option[Scheme] = None, authority: Option[Authority] = None, path: Path = Nil, query: UriTemplate.Query = Nil, fragment: Fragment = Nil) extends Product with Serializable

    Permalink

    Simple representation of a URI Template that can be rendered as RFC6570 conform string.

    Simple representation of a URI Template that can be rendered as RFC6570 conform string.

    This model reflects only a subset of RFC6570.

    Level 1 and Level 2 are completely modeled and Level 3 features are limited to:

    • Path segments, slash-prefixed
    • Form-style query, ampersand-separated
    • Fragment expansion
  68. final class UrlForm extends AnyVal

    Permalink
  69. type AuthedService[T, F[_]] = Kleisli[[β$1$]OptionT[F, β$1$], AuthedRequest[F, T], Response[F]]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 0.20.1) Deprecated in favor of AuthedRoutes

  70. trait Http4s extends Http4sInstances with Http4sFunctions with AllSyntax

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 0.20.0-M2) Use org.http4s.implicits._ instead

  71. trait Http4sFunctions extends AnyRef

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 0.20.0-M2) Use org.http4s.qvalue._ or org.http4s.Uri._ instead

  72. trait Http4sInstances extends AnyRef

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 0.20.0-M2) Import from or use EntityDecoder/EntityEncoder directly instead

  73. type Http4sSyntax = AllSyntax

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 0.16) Moved to org.http4s.syntax.AllSyntax

  74. type HttpService[F[_]] = Kleisli[[β$0$]OptionT[F, β$0$], Request[F], Response[F]]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 0.19) Deprecated in favor of HttpRoutes

  75. type Service[F[_], A, B] = Kleisli[F, A, B]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 0.18) Deprecated in favor of just using Kleisli

Value Members

  1. val ApiVersion: Http4sVersion

    Permalink
  2. object AuthScheme

    Permalink
  3. object AuthedRequest extends Serializable

    Permalink
  4. object AuthedRoutes

    Permalink
  5. object BasicCredentials extends Serializable

    Permalink
  6. object BuildInfo extends Product with Serializable

    Permalink

    This object was generated by sbt-buildinfo.

  7. object CacheDirective

    Permalink

    A registry of cache-directives, as listed in http://www.iana.org/assignments/http-cache-directives/http-cache-directives.xhtml

  8. object Charset extends Serializable

    Permalink
  9. object CharsetRange

    Permalink
  10. object ContentCoding

    Permalink
  11. object Credentials

    Permalink
  12. object DecodeFailure extends Serializable

    Permalink
  13. object DecodeResult

    Permalink
  14. val DefaultCharset: Charset

    Permalink
  15. val EmptyBody: EntityBody[Nothing]

    Permalink
  16. object Entity extends Serializable

    Permalink
  17. object EntityDecoder

    Permalink

    EntityDecoder is used to attempt to decode an EntityBody This companion object provides a way to create new EntityDecoders along with some commonly used instances which can be resolved implicitly.

  18. object EntityEncoder

    Permalink
  19. object Header

    Permalink
  20. object HeaderKey

    Permalink
  21. object Headers

    Permalink
  22. object Http

    Permalink

    Functions for creating Http kleislis.

  23. object HttpApp

    Permalink

    Functions for creating HttpApp kleislis.

  24. object HttpCodec

    Permalink
  25. object HttpDate

    Permalink
  26. object HttpRoutes

    Permalink

    Functions for creating HttpRoutes kleislis.

  27. object HttpVersion extends Serializable

    Permalink
  28. object LanguageTag extends Serializable

    Permalink
  29. object LiteralSyntaxMacros

    Permalink

    Thanks to ip4s for the singlePartInterpolator implementation https://github.com/Comcast/ip4s/blob/b4f01a4637f2766a8e12668492a3814c478c6a03/shared/src/main/scala/com/comcast/ip4s/LiteralSyntaxMacros.scala

  30. object MediaRange

    Permalink
  31. object MediaType extends MimeDB

    Permalink
  32. object Message

    Permalink
  33. object Method extends Serializable

    Permalink
  34. object ParseFailure extends Serializable

    Permalink
  35. object ParseResult

    Permalink
  36. object QValue

    Permalink
  37. object Query

    Permalink
  38. object QueryParam

    Permalink
  39. object QueryParamDecoder

    Permalink
  40. object QueryParamEncoder

    Permalink
  41. object QueryParamKeyLike

    Permalink
  42. object RangeUnit extends Serializable

    Permalink
  43. object Request extends Serializable

    Permalink
  44. object RequestCookieJar

    Permalink
  45. object Response extends Serializable

    Permalink
  46. object ServerSentEvent extends Serializable

    Permalink
  47. object ServerSoftware extends Serializable

    Permalink
  48. object StaticFile

    Permalink
  49. object Status extends Serializable

    Permalink
  50. object TransferCoding

    Permalink
  51. object Uri extends Serializable

    Permalink
  52. object UriTemplate extends Serializable

    Permalink
  53. object UrlForm

    Permalink
  54. package headers

    Permalink
  55. object implicits extends AllSyntax

    Permalink
  56. package metrics

    Permalink
  57. package multipart

    Permalink

    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.

  58. package parser

    Permalink
  59. package syntax

    Permalink
  60. package util

    Permalink
  61. package websocket

    Permalink

Deprecated Value Members

  1. object AuthedService

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 0.20.2) Use AuthedRoutes instead

  2. object Http4s extends Http4s

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 0.20.0-M2) Use org.http4s.implicits._ instead

  3. object Http4sFunctions extends Http4sFunctions

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 0.20.0-M2) Use org.http4s.qvalue._ or org.http4s.Uri._ instead

  4. object Http4sInstances extends Http4sInstances

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 0.20.0-M2) Import from or use EntityDecoder/EntityEncoder directly instead

  5. val Http4sSyntax: all.type

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 0.16) Moved to org.http4s.syntax.all

  6. object HttpService extends Serializable

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 0.19) Replaced by HttpRoutes

  7. object Service

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 0.18) Deprecated in favor of Kleisli

Inherited from AnyRef

Inherited from Any

Ungrouped