Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Pekko to supported backends #2156

Merged
merged 4 commits into from
Apr 26, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/backends/summary.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ These default backends provide limited customisation options, hence for any more
Which one to choose?

* for simple exploratory requests, use the [synchronous](synchronous.md) `DefaultSyncBackend` / `HttpClientSyncBackend`.
* if you have Akka in your stack, use the [Akka backend](akka.md)
* if you have Akka in your stack, use the [Akka backend](akka.md) or [Pekko backend](pekko.md)
kciesielski marked this conversation as resolved.
Show resolved Hide resolved
* if you are using `Future` without Akka, use the `DefaultFutureBackend` / `HttpClientFutureBackend`
* finally, if you are using a functional effect wrapper, use one of the "functional" backends, for [ZIO](zio.md), [Monix](monix.md), [Scalaz](scalaz.md), [cats-effect](catseffect.md) or [fs2](fs2.md).

Expand All @@ -39,6 +39,7 @@ Class Effect type Supported
``HttpURLConnectionBackend`` None (``Identity``) ``java.io.InputStream`` (blocking) no no
``TryHttpURLConnectionBackend`` ``scala.util.Try`` ``java.io.InputStream`` (blocking) no no
``AkkaHttpBackend`` ``scala.concurrent.Future`` ``akka.stream.scaladsl.Source[ByteString, Any]`` yes (regular & streaming) yes
``PekkoHttpBackend`` ``scala.concurrent.Future`` ``pekko.stream.scaladsl.Source[ByteString, Any]`` yes (regular & streaming) yes
Pask423 marked this conversation as resolved.
Show resolved Hide resolved
``ArmeriaFutureBackend`` ``scala.concurrent.Future`` n/a no yes
``ArmeriaScalazBackend`` ``scalaz.concurrent.Task`` n/a no yes
``ArmeriaZioBackend`` ``zio.Task`` ``zio.stream.Stream[Throwable, Byte]`` no yes
Expand Down
Loading