Set the result's content.
Set the result's content.
The content to send.
Changes the result content type.
Changes the result content type.
For example:
Ok("Hello world ").as("application/xml")
the new content type.
the new result
Feed the content as the response, using chunked transfer encoding.
Feed the content as the response, using chunked transfer encoding.
Chunked transfer encoding is only supported for HTTP 1.1 clients. If the client is an HTTP 1.0 client, Play will instead return a 505 error code.
Chunked encoding allows the server to send a response where the content length is not known, or for potentially infinite streams, while still allowing the connection to be kept alive and reused for the next request.
Enumerator providing the content to stream.
Clears the user's language by discarding the language cookie set by withLang
Clears the user's language by discarding the language cookie set by withLang
For example:
Ok(Messages("hello.world")).clearingLang
the new result
Discards cookies along this result.
Discards cookies along this result.
For example:
Ok("Hello world").discardingCookies("theme")
the cookies to discard along to this result
the new result
Feed the content as the response.
Feed the content as the response.
The connection will be closed after the response is sent, regardless of whether there is a content length or transfer encoding defined.
Enumerator providing the content to stream.
Adds values to the flash scope for this result.
Adds values to the flash scope for this result.
For example:
Ok("Hello world").flashing("success" -> "Done!")
the flash values to set with this result
the new result
Adds values to the flash scope for this result.
Adds values to the flash scope for this result.
For example:
Ok("Hello world").flashing(flash + ("success" -> "Done!"))
the flash scope to set with this result
the new result
The response header
The response header
Send a file.
Send a file.
The file to send.
Use Content-Disposition inline or attachment.
function to retrieve the file name (only used for Content-Disposition attachment).
Adds cookies to this result.
Adds cookies to this result.
For example:
Ok("Hello world").withCookies(Cookie("theme", "blue"))
the cookies to add to this result
the new result
Adds headers to this result.
Adds headers to this result.
For example:
Ok("Hello world").withHeaders(ETAG -> "0")
the headers to add to this result.
the new result
Sets the user's language permanently for future requests by storing it in a cookie.
Sets the user's language permanently for future requests by storing it in a cookie.
For example:
implicit val lang = Lang("fr-FR") Ok(Messages("hello.world")).withLang(lang)
the language to store for the user
the new result
Discards the existing session for this result.
Discards the existing session for this result.
For example:
Ok("Hello world").withNewSession
the new result
Sets a new session for this result, discarding the existing session.
Sets a new session for this result, discarding the existing session.
For example:
Ok("Hello world").withSession("saidHello" -> "yes")
the session to set with this result
the new result
Sets a new session for this result.
Sets a new session for this result.
For example:
Ok("Hello world").withSession(session + ("saidHello" -> "true"))
the session to set with this result
the new result
Discards cookies along this result.
Discards cookies along this result.
For example:
Ok("Hello world").discardingCookies("theme")
the names of the cookies to discard along to this result
the new result
(Since version 2.1) This method can only discard cookies on the / path with no domain and without secure set. Use discardingCookies(DiscardingCookie*) instead.
Set the result's content as chunked.
Set the result's content as chunked.
A function that will give you the Iteratee to write in once ready.
(Since version 2.2.0) Use stream(Enumerator) instead. Will be removed in Play 2.3.
Stream the results content as chunked.
Stream the results content as chunked.
Enumerator providing the content to stream.
(Since version 2.3.0) Use Status.chunked instead
Generates default
SimpleResult
from a content type, headers and content.