Skip to content
This repository was archived by the owner on Jan 9, 2019. It is now read-only.
/ background Public archive

Class to create a queue of processes that run in Background

Notifications You must be signed in to change notification settings

tofoli/background

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

Background

Class to create a queue of processes that run in Background

load 'background.rb'
Background.new do
	Database.reply()
end

bc = Background.new do
	Bank.integration()
end

bc.finished do
	msg = bc.error? ?
		"Was not possible to complete the process!<br />Error: #{bc.error}" :
		'Successfully Completed'
	Email.send(msg)
end

About

Class to create a queue of processes that run in Background

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages