Back to Playframework

Comet

documentation/manual/working/scalaGuide/main/async/ScalaComet.md

3.1.0-M92.6 KB
Original Source
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

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 Pekko 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:

@comet-imports

You will also need a materializer, which is best done by pulling pekko.stream.Materializer from your [[DI system|ScalaDependencyInjection]].

Using Comet with String Flow

To push string messages through a Flow, do the following:

@comet-string

Using Comet with JSON Flow

To push JSON messages through a Flow, do the following:

@comet-json

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.