Sha256: ea096a47bc395d1f629214a12fb3f63312678dbfef09f7fe1ae6209fbb40c44f

Contents?: true

Size: 1.46 KB

Versions: 9

Compression:

Stored size: 1.46 KB

Contents

module Flipper
  module Adapters
    class Sync
      # Internal: Wraps a Synchronizer instance and only invokes it every
      # N seconds.
      class IntervalSynchronizer
        # Private: Number of seconds between syncs (default: 10).
        DEFAULT_INTERVAL = 10

        # Private
        def self.now
          Process.clock_gettime(Process::CLOCK_MONOTONIC, :second)
        end

        # Public: The Float or Integer number of seconds between invocations of
        # the wrapped synchronizer.
        attr_reader :interval

        # Public: Initializes a new interval synchronizer.
        #
        # synchronizer - The Synchronizer to call when the interval has passed.
        # interval - The Integer number of seconds between invocations of
        #            the wrapped synchronizer.
        def initialize(synchronizer, interval: nil)
          @synchronizer = synchronizer
          @interval = interval || DEFAULT_INTERVAL
          # TODO: add jitter to this so all processes booting at the same time
          # don't phone home at the same time.
          @last_sync_at = 0
        end

        def call
          return unless time_to_sync?

          @last_sync_at = now
          @synchronizer.call

          nil
        end

        private

        def time_to_sync?
          seconds_since_last_sync = now - @last_sync_at
          seconds_since_last_sync >= @interval
        end

        def now
          self.class.now
        end
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
flipper-0.22.2 lib/flipper/adapters/sync/interval_synchronizer.rb
flipper-0.22.1 lib/flipper/adapters/sync/interval_synchronizer.rb
flipper-0.22.0 lib/flipper/adapters/sync/interval_synchronizer.rb
flipper-0.21.0 lib/flipper/adapters/sync/interval_synchronizer.rb
flipper-0.21.0.rc2 lib/flipper/adapters/sync/interval_synchronizer.rb
flipper-0.21.0.rc1 lib/flipper/adapters/sync/interval_synchronizer.rb
flipper-0.20.4 lib/flipper/adapters/sync/interval_synchronizer.rb
flipper-0.20.3 lib/flipper/adapters/sync/interval_synchronizer.rb
flipper-0.20.2 lib/flipper/adapters/sync/interval_synchronizer.rb