zio
Here are 157 public repositories matching this topic...
-
Updated
May 24, 2016 - Python
-
Updated
Jul 9, 2020 - TypeScript
Evaluate the performance of zio actors.
Ideally this should cover a range of cases similar to the ones covered by akka performance benchmarks https://github.com/akka/akka/tree/master/akka-bench-jmh/src/main/scala/akka/actor
At minimum provide experiments for
-
Updated
Jul 5, 2020 - Scala
The provideSomeLayer[R0] API was tricky for me to get until I peeked at the documentation -- where it states the type parameter is for the remainder. Perhaps IntelliJ could assist in figuring this out.
-
Updated
Jun 29, 2020 - Scala
Refactor tests
Most of the tests use assertions of the following form assert(predicate)(isTrue). While this is certainly a possible thing to do, we should consider utilizing the full power of zio-test.
-
Updated
Jul 7, 2020 - Scala
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 calldeleteMessageand so on properly yourself.
I think
-
Updated
Jul 6, 2020 - Scala
-
Updated
Jul 5, 2020 - Scala
https://scalacenter.github.io/scalafix/docs/users/suppression.html
We should probably simply rename this annotation for more "zio-shield-ish" and make it specific, because we control the set of rules.
-
Updated
Feb 27, 2020 - Scala
-
Updated
Jul 8, 2020 - Scala
-
Updated
Jul 8, 2020 - Java
Publish microsite
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.
-
Updated
Apr 27, 2019 - Scala
-
Updated
Jun 14, 2020 - Scala
-
Updated
Jul 8, 2020 - Scala
Improve this page
Add a description, image, and links to the zio topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the zio topic, visit your repo's landing page and select "manage topics."
ZTransducer is an effectful chunk processing function, and thus forms an arrow. We should add the following combinators on it:
(ZTransducer[A, B], ZTransducer[A, C]) => ZTransducer[A, (B, C)]racing:looks problematic to implement currently(ZTransducer[A, B], ZTransducer[A, C]) => ZTransducer[A, Either[B, C]]