class Process::Daemon

def run

If you want to implement a long running process you override this method. You may like to call super but it is not necessary to use the supplied interruption machinery.
def run
	sleep_until_interrupted
end