class Sfp::Agent::Maintenance

Constants

IntervalTime

Public Class Methods

new(opts={}) click to toggle source
# File lib/sfpagent/agent.rb, line 698
def initialize(opts={})
        @opts = opts
end

Public Instance Methods

start() click to toggle source
# File lib/sfpagent/agent.rb, line 702
def start
        return if not defined?(@@enabled) or @@enabled
        @@enabled = true
        # TODO
end
stop() click to toggle source
# File lib/sfpagent/agent.rb, line 708
def stop
        @@enabled = false
end