class Qs::Daemon::State

Public Instance Methods

halt?() click to toggle source
# File lib/qs/daemon.rb, line 350
def halt?; self.value == :halt; end
run?() click to toggle source
# File lib/qs/daemon.rb, line 348
def run?;  self.value == :run;  end
stop?() click to toggle source
# File lib/qs/daemon.rb, line 349
def stop?; self.value == :stop; end