-
- Always look for the official documentation, this tutorial may not suit you as there are new updates to the installation process.
- References are at the end of the document.
-
- Windows 11 (
x64
) - WSL 2 (
Ubuntu 22.04.2 LTS
)
- Windows 11 (
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.apache.pekko.actor.testkit.typed.scaladsl.ScalaTestWithActorTestKit | |
import org.apache.pekko.http.scaladsl.Http | |
import org.apache.pekko.http.scaladsl.model.StatusCodes | |
import org.apache.pekko.http.scaladsl.model.ws.{Message, TextMessage, WebSocketUpgradeResponse} | |
import org.apache.pekko.stream.scaladsl.{Keep, Sink, SinkQueueWithCancel, Source, SourceQueueWithComplete} | |
import org.apache.pekko.stream.{OverflowStrategy, QueueOfferResult} | |
import org.scalatest.funsuite.AnyFunSuiteLike | |
import org.scalatestplus.play.guice.GuiceOneServerPerTest | |
import scala.concurrent.duration.Duration |