RawDecorator

trait RawDecorator extends Decorator[Raw, Raw, Any]

A RawDecorator is a decorator that operates on the raw request and response stream, before and after the primary Endpoint does it's job.

trait Decorator[Raw, Raw, Any]
class Annotation
class Object
trait Matchable
class Any

Type members

Types

type InputParser[T] = NoOpParser[Any, T]

Inherited types

final type Delegate = Map[String, Input] => Result[InnerReturned]
Inherited from:
Decorator
final type InputTypeAlias = Input
Inherited from:
Decorator

Value members

Inherited methods

def getParamParser[T](implicit p: InputParser[T]): InputParser[T]
Inherited from:
Decorator
def wrapFunction(ctx: Request, delegate: Delegate): Result[Raw]
Inherited from:
Decorator