Last active
February 3, 2026 20:20
-
-
Save dacr/6c51b238b62bc62a230dacb05ef8bb57 to your computer and use it in GitHub Desktop.
ZIO learning - using a counter to monitor logic behavior / published by https://github.com/dacr/code-examples-manager #924f9d93-3244-46f0-92b3-f0d6e2413251/1587907c0ee8977fb42dbb57760602dda7424867
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // summary : ZIO learning - using a counter to monitor logic behavior | |
| // keywords : scala, zio, learning, pure-functional, operations, counter, @testable | |
| // publish : gist | |
| // authors : zio | |
| // license : Apache License Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt) | |
| // id : 924f9d93-3244-46f0-92b3-f0d6e2413251 | |
| // created-on : 2021-11-05T17:16:11Z | |
| // managed-by : https://github.com/dacr/code-examples-manager | |
| // run-with : scala-cli $file | |
| // --------------------- | |
| //> using scala "3.4.2" | |
| //> using dep "dev.zio::zio:2.0.13" | |
| //> using dep "fr.janalyse::zio-worksheet:2.0.13.0" | |
| // --------------------- | |
| import zio.*, zio.worksheet.* | |
| import zio.metrics.* | |
| val monitoredLogic = for { | |
| chosenOddNumber <- ( | |
| Random.nextLongBounded(10) @@ Metric.counter("attempts") | |
| ).repeatUntil(x => x % 2 == 0 && x > 0) | |
| } yield chosenOddNumber | |
| val result = monitoredLogic.unsafeRun | |
| println(result) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment