class SnowmanIO::Loop::Checks

Public Class Methods

new() click to toggle source
# File lib/snowman-io/loop/checks.rb, line 9
def initialize
  after(1) { tick }
end

Public Instance Methods

tick() click to toggle source
# File lib/snowman-io/loop/checks.rb, line 13
def tick
  App.time "Checks Performing Time" do
    ChecksPerform.perform
  end
  after(3) { tick }
end