Last active
February 3, 2026 20:26
-
-
Save dacr/e8051ab365dee400212b16bec4ef7713 to your computer and use it in GitHub Desktop.
ZIO learning - clock / published by https://github.com/dacr/code-examples-manager #64edef51-38e9-492e-88f6-b00b5336ad55/cad7a87c213a5c77aa8e50a2497ad56c391115be
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 - clock | |
| // keywords : scala, zio, learning, pure-functional | |
| // publish : gist | |
| // authors : David Crosson | |
| // license : Apache License Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt) | |
| // id : 64edef51-38e9-492e-88f6-b00b5336ad55 | |
| // created-on : 2021-04-02T16:22:22+02:00 | |
| // 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.*, zio.Duration.* | |
| val alarmLogic = for { | |
| _ <- Console.printLine("how many seconds to wait for ?") | |
| duration <- Console.readLine.mapAttempt(_.toInt) | |
| _ <- Clock.sleep(duration.seconds) | |
| _ <- Console.printLine("Wake up !") | |
| } yield () | |
| /* | |
| So as alarmLogic is an effect, it is very very easy to test | |
| although a clock is being used, see the next example | |
| */ | |
| // ------------------------------------------------------------- | |
| alarmLogic.unsafeRun |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment