Skip to content
#

zio

Here are 157 public repositories matching this topic...

zio
iravid
iravid commented Apr 30, 2020

ZTransducer is an effectful chunk processing function, and thus forms an arrow. We should add the following combinators on it:

  • zipping: (ZTransducer[A, B], ZTransducer[A, C]) => ZTransducer[A, (B, C)]
  • racing: (ZTransducer[A, B], ZTransducer[A, C]) => ZTransducer[A, Either[B, C]] looks problematic to implement currently
  • both: `(ZTransducer[A, C], ZTransducer[B, D]) => ZTr
zio-actors
reibitto
reibitto commented Apr 26, 2020

I'm looking to migrate to zio-sqs, but right now as far as I can tell there are 2 main modes of operation:

  • autoDelete=true: This is basically at most once semantics. If your handler dies or there is a hard crash, the message you were in the middle of handling is lost forever.
  • autoDelete=false: Manual mode. You have to ensure to call deleteMessage and so on properly yourself.

I think

dnaumenko
dnaumenko commented Mar 16, 2020

As this is a project for evaluating ZIO, it would be nice to see how to connect Http4s server.

For start, this server could contain just one endpoint for health-checks.

Note, that we have to read HTTP server port from the config file. Project already depends on http4s as it uses it as a client.

Improve this page

Add a description, image, and links to the zio topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the zio topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.