Package ratpack.groovy.handling
Class GroovyHandler
- java.lang.Object
-
- ratpack.groovy.handling.GroovyHandler
-
- All Implemented Interfaces:
Handler
public abstract class GroovyHandler extends Object implements Handler
A handler subclass that makes aGroovyContext
available.
-
-
Constructor Summary
Constructors Constructor Description GroovyHandler()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description void
handle(Context context)
Delegates tohandle(GroovyContext)
.protected abstract void
handle(GroovyContext context)
The handle method to implement.
-
-
-
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)
.
-
-