play.api.mvc
An EssentialAction underlies every Action. Given a RequestHeader, an EssentialAction consumes the request body (an ByteString) and returns a Result.
EssentialAction
Action
RequestHeader
ByteString
Result
An EssentialAction is a Handler, which means it is one of the objects that Play uses to handle requests.
Handler
Returns itself, for better support in the routes file.
itself
An
EssentialAction
underlies everyAction
. Given aRequestHeader
, anEssentialAction
consumes the request body (anByteString
) and returns aResult
.An
EssentialAction
is aHandler
, which means it is one of the objects that Play uses to handle requests.