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. final case class AttributeEntry[T](key: AttributeKey[T], value: T) extends Product with Serializable

    Permalink

    A map entry where key is constrained to only be associated with a fixed value of type T.

  2. final class AttributeKey[T] extends AnyRef

    Permalink

    A key in an AttributeMap that constrains its associated value to be of type T.

    A key in an AttributeMap that constrains its associated value to be of type T. The key is uniquely defined by its reference: there are no duplicate keys, even those with the same name and type.

  3. final class AttributeMap extends AnyRef

    Permalink

    An immutable map where an AttributeKey for a fixed type T can only be associated with values of type T.

    An immutable map where an AttributeKey for a fixed type T can only be associated with values of type T. Because the equality of keys is based on reference, it is therefore possible for this map to contain mappings for keys with the same label and same types.

  4. type AuthScheme = CaseInsensitiveString

    Permalink
  5. case class AuthedRequest[A](authInfo: A, req: Request) extends Product with Serializable

    Permalink
  6. type AuthedService[T] = Kleisli[Task, AuthedRequest[T], Response]

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

    Permalink
  8. sealed trait CacheDirective extends Product with Renderable

    Permalink
  9. type Callback[A] = (\/[Throwable, A]) ⇒ Unit

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

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

    Permalink
  12. sealed abstract class CharsetRange extends HasQValue with Renderable

    Permalink
  13. trait CharsetRangeInstances extends AnyRef

    Permalink
  14. final case class ContentCoding(coding: CaseInsensitiveString, qValue: QValue = QValue.One) extends HasQValue with Renderable with Product with Serializable

    Permalink
  15. final case class Cookie(name: String, content: String, expires: Option[Instant] = 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
  16. sealed abstract class Credentials extends Renderable

    Permalink
  17. sealed abstract class DecodeFailure extends 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.

  18. type DecodeResult[T] = EitherT[Task, DecodeFailure, T]

    Permalink
  19. type EntityBody = Process[Task, ByteVector]

    Permalink
  20. trait EntityDecoder[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 Task 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

  21. trait EntityDecoderInstances extends AnyRef

    Permalink

    Implementations of the EntityDecoder instances

  22. trait EntityEncoder[A] extends AnyRef

    Permalink
  23. trait EntityEncoderInstances extends EntityEncoderInstances0

    Permalink
  24. trait EntityEncoderInstances0 extends AnyRef

    Permalink
  25. type EventStream = Process[Task, ServerSentEvent]

    Permalink

    A stream of server-sent events

  26. trait Fallthrough[B] extends AnyRef

    Permalink

    Encapsulates the notion of fallthrough orElse for a Service For any given B, if a Fallthrough[B] exists within implicit context then service.orElse can be used.

  27. final case class GenericCredentials(authScheme: AuthScheme, params: Map[String, String]) extends Credentials with Product with Serializable

    Permalink
  28. final case class GenericDecodeFailure(message: String, response: (HttpVersion) ⇒ Task[Response]) extends DecodeFailure with Product with Serializable

    Permalink

    Generic description of a failure to decode a Message

  29. final case class GenericMessageBodyFailure(message: String, cause: Option[Throwable], response: (HttpVersion) ⇒ Task[Response]) extends MessageBodyFailure with Product with Serializable

    Permalink

    Generic description of a failure to handle a Message body

  30. final case class GenericParsingFailure(sanitized: String, details: String, response: (HttpVersion) ⇒ Task[Response]) extends ParsingFailure with Product with Serializable

    Permalink

    Generic description of a failure to parse an HTTP Message

  31. trait HasQValue extends AnyRef

    Permalink
  32. 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

  33. sealed trait HeaderKey extends AnyRef

    Permalink
  34. final class Headers extends Iterable[Header] with IterableLike[Header, Headers]

    Permalink

    A collection of HTTP Headers

  35. trait Http4s extends Http4sInstances with Http4sFunctions with Http4sSyntax

    Permalink
  36. trait Http4sFunctions extends QValueFunctions with UriFunctions

    Permalink
  37. trait Http4sInstances extends EntityDecoderInstances with HttpVersionInstances with EntityEncoderInstances with CharsetRangeInstances with QValueInstances with MethodInstances with StatusInstances

    Permalink
  38. trait Http4sSyntax extends CaseInsensitiveStringSyntax with MessageSyntax

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

    Permalink
  40. type HttpService = Kleisli[Task, Request, Response]

    Permalink

    A Service that produces a Task to compute a Response from a Request.

    A Service that produces a Task to compute a Response from a Request. An HttpService can be run on any supported http4s server backend, such as Blaze, Jetty, or Tomcat.

  41. 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

  42. trait HttpVersionInstances extends AnyRef

    Permalink
  43. 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

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

    Permalink

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

  45. 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

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

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

    Permalink

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

  48. sealed class MediaRange extends Renderable

    Permalink
  49. sealed class MediaType extends MediaRange

    Permalink
  50. 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

  51. 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.

  52. sealed trait Message extends MessageOps

    Permalink

    Represents a HTTP Message.

    Represents a HTTP Message. The interesting subclasses are Request and Response while most of the functionality is found in MessageSyntax and ResponseOps

    See also

    MessageSyntax, ResponseOps

  53. sealed abstract class MessageBodyFailure extends DecodeFailure

    Permalink

    Indicates a problem decoding a Message body.

  54. sealed abstract class MessageFailure extends RuntimeException

    Permalink

    Indicates a failure to handle an HTTP Message.

  55. trait MessageOps extends Any

    Permalink
  56. trait MessageSyntax extends AnyRef

    Permalink
  57. 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]

  58. trait MethodInstances extends AnyRef

    Permalink
  59. final case class OAuth2BearerToken(token: String) extends Credentials with Product with Serializable

    Permalink
  60. final case class ParseFailure(sanitized: String, details: String) extends ParsingFailure 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.

  61. type ParseResult[+A] = \/[ParseFailure, A]

    Permalink
  62. sealed abstract class ParsingFailure extends MessageFailure with NoStackTrace

    Permalink

    Indicates an error parsing an HTTP Message.

  63. final class QValue extends AnyVal with Ordered[QValue] with Renderable

    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

  64. trait QValueFunctions extends AnyRef

    Permalink
  65. trait QValueInstances extends AnyRef

    Permalink
  66. final class Query extends IndexedSeq[KeyValue] with IndexedSeqOptimized[KeyValue, Query] with 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 '='

  67. trait QueryOps extends AnyRef

    Permalink
  68. trait QueryParam[T] extends AnyRef

    Permalink

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

  69. 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

  70. 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

  71. trait QueryParamKeyLike[T] extends AnyRef

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

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

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

    Permalink
  75. final case class Request(method: Method = Method.GET, uri: Uri = Uri(path = "/"), httpVersion: HttpVersion = HttpVersion.`HTTP/1.1`, headers: Headers = Headers.empty, body: EntityBody = EmptyBody, attributes: AttributeMap = AttributeMap.empty) extends Message with RequestOps 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.

    method

    Method.GET, Method.POST, etc.

    uri

    representation of the request URI

    httpVersion

    the HTTP version

    headers

    collection of Headers

    body

    scalaz.stream.Process[Task,Chunk] defining the body of the request

    attributes

    Immutable Map used for carrying additional information in a type safe fashion

  76. class RequestCookieJar extends Iterable[Cookie] with IterableLike[Cookie, RequestCookieJar]

    Permalink
  77. trait RequestOps extends MessageOps

    Permalink
  78. final case class Response(status: Status = Status.Ok, httpVersion: HttpVersion = HttpVersion.`HTTP/1.1`, headers: Headers = Headers.empty, body: EntityBody = EmptyBody, attributes: AttributeMap = AttributeMap.empty) extends Message with ResponseOps 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

    scalaz.stream.Process[Task,Chunk] representing the possible body of the response

    attributes

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

  79. trait ResponseOps extends MessageOps

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

    Permalink
  81. type Service[A, B] = Kleisli[Task, A, B]

    Permalink

    A Service wraps a function of request type A to a Task that runs to response type B.

    A Service wraps a function of request type A to a Task that runs to response type B. By wrapping the Service, we can compose them using Kleisli operations.

  82. final 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]

  83. trait StatusInstances extends AnyRef

    Permalink
  84. trait TaskMessageOps[M <: Message] extends MessageOps

    Permalink
  85. final class TaskRequestOps extends AnyVal with TaskMessageOps[Request] with RequestOps

    Permalink
  86. final class TaskResponseOps extends AnyVal with TaskMessageOps[Response] with ResponseOps

    Permalink
  87. final case class TransferCoding extends Renderable with Product with Serializable

    Permalink
  88. sealed abstract class UnsupportedMediaTypeFailure extends DecodeFailure with NoStackTrace

    Permalink

    Indicates that a Message came with no supported MediaType.

  89. final case class Uri(scheme: Option[CaseInsensitiveString] = 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.

  90. trait UriFunctions extends AnyRef

    Permalink
  91. 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
  92. final class UrlForm extends AnyVal

    Permalink

Value Members

  1. val ApiVersion: Http4sVersion

    Permalink
  2. object AttributeKey

    Permalink
  3. object AttributeMap

    Permalink
  4. object AuthScheme

    Permalink
  5. object AuthedRequest extends Serializable

    Permalink
  6. object AuthedService extends Serializable

    Permalink
  7. object BasicCredentials extends Serializable

    Permalink
  8. object BuildInfo extends Product with Serializable

    Permalink

    This object was generated by sbt-buildinfo.

  9. object CacheDirective

    Permalink

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

  10. object Charset extends Serializable

    Permalink
  11. object CharsetRange extends CharsetRangeInstances

    Permalink
  12. object ContentCoding extends Registry with Serializable

    Permalink
  13. object DecodeResult

    Permalink
  14. val DefaultCharset: Charset

    Permalink
  15. def EmptyBody: EntityBody

    Permalink
  16. object EntityDecoder extends EntityDecoderInstances

    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.

  17. object EntityEncoder extends EntityEncoderInstances

    Permalink
  18. object Fallthrough

    Permalink

    Houses the principal Fallthrough typeclass instances.

  19. object Header

    Permalink
  20. object HeaderKey

    Permalink
  21. object Headers

    Permalink
  22. object Http4s extends Http4s

    Permalink
  23. object Http4sFunctions extends Http4sFunctions

    Permalink
  24. object Http4sInstances extends Http4sInstances

    Permalink
  25. object Http4sSyntax extends Http4sSyntax

    Permalink
  26. object HttpService extends Serializable

    Permalink
  27. object HttpVersion extends HttpVersionInstances with Serializable

    Permalink
  28. object LanguageTag extends Serializable

    Permalink
  29. object MediaRange extends Registry

    Permalink
  30. object MediaType extends Registry

    Permalink
  31. object Message

    Permalink
  32. object MessageSyntax extends MessageSyntax

    Permalink
  33. object Method extends MethodInstances with Serializable

    Permalink
  34. object ParseFailure extends Serializable

    Permalink
  35. object ParseResult

    Permalink
  36. object QValue extends QValueInstances with QValueFunctions

    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 Service

    Permalink
  48. object StaticFile

    Permalink
  49. object Status extends Serializable

    Permalink
  50. object TransferCoding extends Registry with Serializable

    Permalink
  51. object Uri extends UriFunctions with Serializable

    Permalink
  52. object UriTemplate extends Serializable

    Permalink
  53. object UrlForm

    Permalink
  54. package headers

    Permalink
  55. 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.

  56. package parser

    Permalink
  57. package server

    Permalink
  58. package util

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped