HandlerInvoker

play.core.routing.HandlerInvoker
trait HandlerInvoker[-T]

An object that, when invoked with a thunk, produces a Handler that wraps that thunk. Constructed by a HandlerInvokerFactory.

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Abstract methods

def call(call: => T): Handler

Create a Handler that wraps the given thunk. The thunk won't be called until the Handler is applied. The returned Handler will be used by Play to service the request.

Create a Handler that wraps the given thunk. The thunk won't be called until the Handler is applied. The returned Handler will be used by Play to service the request.

Attributes