Last active
February 3, 2026 20:22
-
-
Save dacr/cf5c43906d032eb819385be215cc7a78 to your computer and use it in GitHub Desktop.
ZIO learning - interrupting a sub command & its process / published by https://github.com/dacr/code-examples-manager #94b93765-4924-4ce4-b8fb-81fd80b27e29/a66d7074e8a0a9b24fab216171f183f3363efd14
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 - interrupting a sub command & its process | |
| // keywords : scala, zio, learning, process, commands, pure-functional, @testable | |
| // publish : gist | |
| // authors : David Crosson | |
| // license : Apache License Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt) | |
| // id : 94b93765-4924-4ce4-b8fb-81fd80b27e29 | |
| // created-on : 2022-01-15T11:35:16+01: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 "dev.zio::zio-process:0.7.2" | |
| // --------------------- | |
| import zio.* | |
| import zio.process.* | |
| object Encapsulated extends ZIOAppDefault: | |
| def run = | |
| for | |
| process <- Command("vmstat", "1").redirectErrorStream(true).run | |
| linesFiber <- process.stdout.lines.fork | |
| _ <- Clock.sleep(5.seconds) | |
| _ <- process.killTree | |
| lines <- linesFiber.join | |
| _ <- Console.printLine(s"Gotten lines = ${lines.mkString("\n")}") | |
| yield () | |
| Encapsulated.main(Array.empty) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment