RxFilter

wvlet.airframe.http.RxFilter
See theRxFilter companion object
trait RxFilter

An RxFilter is a filter for receiving the response from the context service via context.apply(request), and transforming it into another Rx[Response].

Attributes

Companion:
object
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Abstract methods

def apply(request: Request, context: RxContext): Rx[Response]

Implement this method to create your own filter.

Implement this method to create your own filter.

Attributes

Concrete methods

def andThen(nextFilter: RxFilter): RxFilter

Chain to the next filter.

Chain to the next filter.

Attributes

def andThen(context: RxContext): RxContext

Terminates the filter at the context.

Terminates the filter at the context.

Attributes