Package ratpack.groovy.handling
Class GroovyHandler
- java.lang.Object
-
- ratpack.groovy.handling.GroovyHandler
-
- All Implemented Interfaces:
Handler
public abstract class GroovyHandler extends java.lang.Object implements Handler
A handler subclass that makes aGroovyContextavailable.
-
-
Constructor Summary
Constructors Constructor Description GroovyHandler()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract voidhandle(GroovyContext context)The handle method to implement.voidhandle(Context context)Delegates tohandle(GroovyContext).
-
-
-
Method Detail
-
handle
protected abstract void handle(GroovyContext context)
The handle method to implement.- Parameters:
context- The context
-
handle
public final void handle(Context context)
Delegates tohandle(GroovyContext).
-
-