Packages

trait HandlerInvokerFactory[-T] extends AnyRef

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.

Annotations
@implicitNotFound()
Source
HandlerInvoker.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HandlerInvokerFactory
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. 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*.