zio / interop-twitter

https://zio.dev/zio-interop-twitter
Apache License 2.0
13 stars 17 forks source link
scala zio

Twitter Interop

Project stage CI Releases Snapshots

This library provides capability to convert Twitter Future into ZIO Task.

Example

import com.twitter.util.Future
import zio.{ App, Task }
import zio.console._
import zio.interop.twitter._

object Example extends App {
  def run(args: List[String]) = {
    val program =
      for {
        _        <- putStrLn("Hello! What is your name?")
        name     <- getStrLn
        greeting <- Task.fromTwitterFuture(greet(name))
        _        <- putStrLn(greeting)
      } yield ()

    program.exitCode
  }

  private def greet(name: String): Future[String] = Future.value(s"Hello, $name!")
}