Packages

t

play.core.routing

HandlerInvoker

trait HandlerInvoker[-T] extends AnyRef

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

Source
HandlerInvoker.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HandlerInvoker
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def call(call: => T): Handler

    Create a Handler that wraps the given thunk.

    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.