identity

wvlet.airframe.http.RxHttpFilter.identity
object identity extends RxHttpFilter

Attributes

Graph
Supertypes
trait RxHttpFilter
class Object
trait Matchable
class Any
Self type
identity.type

Members list

Value members

Concrete methods

override def andThen(nextFilter: RxHttpFilter): RxHttpFilter

Chain to the next filter.

Chain to the next filter.

Attributes

Definition Classes
override def andThen(endpoint: RxHttpEndpoint): RxHttpEndpoint

Bridge this filter to the endpoint.

Bridge this filter to the endpoint.

Attributes

Definition Classes
override def apply(request: Request, next: RxHttpEndpoint): Rx[Response]

Apply a filter before sending the request to the endpoint, and handle its response before returning the client.

Apply a filter before sending the request to the endpoint, and handle its response before returning the client.

To implement your own filter, override this method.

Attributes

Definition Classes

Inherited methods

def andThen(body: Request => Rx[Response]): RxHttpEndpoint

A handy method to create RxHttpEndpoint from a given function.

A handy method to create RxHttpEndpoint from a given function.

Attributes

Inherited from:
RxHttpFilter