Package

lol

Permalink

package lol

This is the documentation for the lolhttp library.

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

Value Members

  1. package http

    Permalink

    The core module for lolhttp.

    The core module for lolhttp.

    Server.listen(8888) { request =>
      Ok("Hello world!")
    }
    
    Client.run(Get("http://localhost:8888/")) { response =>
      response.readAs[String]
    }

    Provides an HTTP Client and an HTTP Server. Both client and server are Service functions. A service function takes a Request and eventually returns a Response. Requests and responses are shared between the client and the server API, making it easy to assemble them. Both are seen as a set of HTTP headers, and a Content body.

    The content Stream is based on fs2 and can be lazily consumed if needed. It can be encoded and decoded using the appropriate ContentEncoder and ContentDecoder.

    SSL is supported on both sides.

Inherited from AnyRef

Inherited from Any

Ungrouped