Sha256: 653d0adebace21d6e64e046edcf07b4f83cbfa7c23e5c034e8ce4dbd700f7b81
Contents?: true
Size: 373 Bytes
Versions: 6
Compression:
Stored size: 373 Bytes
Contents
require 'snowman-io/loop/check_processor' require 'snowman-io/loop/checks_perform' module SnowmanIO module Loop class Checks include Celluloid def initialize after(1) { tick } end def tick App.time "Checks Performing Time" do ChecksPerform.perform end after(3) { tick } end end end end
Version data entries
6 entries across 6 versions & 1 rubygems