Twitter future (Finagle) backend
To use, add the following dependency to your project:
"com.softwaremill.sttp.client3" %% "finagle-backend" % "3.10.2"
Next you’ll need to add an implicit value:
import sttp.client3.finagle.FinagleBackend
val backend = FinagleBackend()
This backend depends on finagle, and offers an asynchronous backend, which wraps results in Twitter’s Future
.
Please note that:
the backend does not support
SttpBackendOptions
, that is specifying proxy settings (proxies are not implemented in http4s, see this issue), as well as configuring the connect timeoutthe backend does not support non-blocking streaming or websockets.