Created
December 20, 2019 14:29
-
-
Save qingwei91/e932b737f23be85f6a4537073dad0dc6 to your computer and use it in GitHub Desktop.
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
// create non-terminating loop | |
val cancellable = cancellableLoop[IO, Int, Int](i => {println("a step");Left(i)})(0) | |
val fiber = cancellable.start.unsafeRunSync | |
fiber.cancel.unsafeRunSync |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment