§Comet
§Using chunked responses with Comet
A common use of chunked responses is to create a Comet socket.
A Comet socket is a chunked text/html
response containing only <script>
elements. For each chunk, we write a <script>
tag containing JavaScript that is immediately executed by the web browser. This way we can send events live to the web browser from the server: for each message, wrap it into a <script>
tag that calls a JavaScript callback function, and write it to the chunked response.
Because Ok.chunked
leverages Akka Streams to take a Flow[ByteString]
, we can send a Flow
of elements and transform it so that each element is escaped and wrapped in the Javascript method. The Comet helper automates Comet sockets, pushing an initial blank buffer data for browser compatibility, and supporting both String and JSON messages.
§Comet Imports
To use the Comet helper, import the following classes:
import akka.stream.scaladsl.Source
import akka.stream.Materializer
import play.api.http.ContentTypes
import play.api.libs.json._
import play.api.libs.Comet
import play.api.mvc._
You will also need a materializer, which is best done by pulling akka.stream.Materializer
from your DI system.
§Using Comet with String Flow
To push string messages through a Flow, do the following:
def cometString = Action {
implicit val m = materializer
def stringSource: Source[String, _] = Source(List("kiki", "foo", "bar"))
Ok.chunked(stringSource.via(Comet.string("parent.cometMessage"))).as(ContentTypes.HTML)
}
§Using Comet with JSON Flow
To push JSON messages through a Flow, do the following:
def cometJson = Action {
implicit val m = materializer
def jsonSource: Source[JsValue, _] = Source(List(JsString("jsonString")))
Ok.chunked(jsonSource.via(Comet.json("parent.cometMessage"))).as(ContentTypes.HTML)
}
§Using Comet with iframe
The comet helper should typically be used with a forever-iframe
technique, with an HTML page like:
<script type="text/javascript">
var cometMessage = function(event) {
console.log('Received event: ' + event)
}
</script>
<iframe src="/comet"></iframe>
Note: add the following config to your application.conf and also ensure that you have route mappings set up in order to see the above comet in action.
play.filters.headers { frameOptions = "SAMEORIGIN" contentSecurityPolicy = "connect-src 'self'" }
For an example of a Comet helper, see the Play Streaming Example.
§Debugging Comet
The easiest way to debug a Comet stream that is not working is to use the log()
operation to show any errors involved in mapping data through the stream.
Next: WebSockets