Sha256: 8eea5a78ae4db7b8bc5bd16f8537490db870987d9e15296e9be3fb9ee5b27585
Contents?: true
Size: 978 Bytes
Versions: 2
Compression:
Stored size: 978 Bytes
Contents
# frozen_string_literal: true require 'dry/effects/provider' module Dry module Effects module Providers class Timeout < Provider[:timeout] def self.handle_method(scope, as: Undefined, **) Undefined.default(as) { :with_timeout } end param :scope def timeout left = @time_out_at - read_clock if left <= 0 0.0 else left end end # Yield the block with the handler installed # # @api private def call(stack, timeout) @time_out_at = read_clock + timeout super(stack) end # @param [Effect] effect # @return [Boolean] # @api public def provide?(effect) effect.type.equal?(:timeout) && scope.equal?(effect.scope) end def read_clock ::Process.clock_gettime(::Process::CLOCK_MONOTONIC) end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
dry-effects-0.1.1 | lib/dry/effects/providers/timeout.rb |
dry-effects-0.1.0 | lib/dry/effects/providers/timeout.rb |