trait HandlerInvokerFactory[-T] extends AnyRef
Ordering
- Alphabetic
- By Inheritance
Inherited
- HandlerInvokerFactory
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Abstract Value Members
- abstract 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.
- 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*.
An object that creates a
HandlerInvoker
. Used by thecreateInvoker
method to create aHandlerInvoker
for each route. TheRoutes.createInvoker
method looks for an implicitHandlerInvokerFactory
and uses that to create aHandlerInvoker
.