HandlerInvokerFactory

play.core.routing.HandlerInvokerFactory
See theHandlerInvokerFactory companion object

An object that creates a HandlerInvoker. Used by the createInvoker method to create a HandlerInvoker for each route. The Routes.createInvoker method looks for an implicit HandlerInvokerFactory and uses that to create a HandlerInvoker.

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Abstract methods

def createInvoker(fakeCall: => T, handlerDef: HandlerDef): HandlerInvoker[T]

Create an invoker for the given thunk that is never called.

Create an invoker for the given thunk that is never called.

Value parameters

fakeCall

A simulated call to the controller method. Needed to so implicit resolution can use the controller method's return type, but never actually called.

Attributes