Provides delay
, future
, and lazy
convenient methods to perform operations in a separate Fiber.
-
Add the dependency to your
shard.yml
:dependencies: future: github: crystal-community/future.cr
-
Run
shards install
require "future"
d = delay(1) { Process.signal(Signal::KILL, Process.pid) }
# ... long operations ...
d.cancel
- Fork it (https://github.com/crystal-community/future.cr/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
- Brian J. Cardiff - creator and maintainer