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
EssentialActionunderlies everyAction. Given aRequestHeader, anEssentialActionconsumes the request body (anByteString) and returns aResult.An
EssentialActionis aHandler, which means it is one of the objects that Play uses to handle requests.