Skip to content

This poller continues asking server if job list is done, can add more jobs anytime

Notifications You must be signed in to change notification settings

saxxi/JqueryPoller

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

JqueryPoller

This poller cycle continuously when activated asking to a server to check if a list of tasks are ready.

Each task should have a callback for a success state and one for error.

Usage

Initialize

Polling starts with this call:

var poller;
poller = new JqueryPoller({
	222: { success:'func_imgs', error:'func_imgs_err' },
	444: { success:'func_vids', error:'func_vids_err' },
	555: { success:'func_imgs', error:'func_imgs_err' },
	666: { success:'func_imgs', error:'func_imgs_err' },
	77: { success:'func_vids',  error:'func_vids_err' },
	33: { success:'func_other', error:'func_other_err' },
});

Example of those functions:

function func_imgs(id){      console.log(id,'DONE img!'); }
function func_imgs_err(id){  console.log(id,'ERROR img!'); }

Server responsds in JSON notation

{"codes":{"222":"ok", "444":"pending","33":"processing"},"txts":{"222":"done", "444":"Pending...","33":"Working..."},"t":879868354}

Add more jobs

poller.addpolling({
	122: { success:'func_vids', error:'func_vids_err' },
	133: { success:'func_vids', error:'func_vids_err' },
	144: { success:'func_imgs', error:'func_imgs_err' }
});

Author

Adit Saxena 2010 :: GH fresh

About

This poller continues asking server if job list is done, can add more jobs anytime

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published