Creating a Job
Creating a Job Instance
component {
function index( event, rc, prc ) {
var job = getInstance( "SendWelcomeEmailJob" );
}
}Setting Job Properties
component {
function index( event, rc, prc ) {
var job = getInstance( "SendWelcomeEmailJob" );
job.setEmail( "john@example.com" );
job.setGreeting( "Welcome!" );
}
}setProperties
onConnection
setConnection
onQueue
setQueue
setBackoff
setDelay
setTimeout
setMaxAttempts
chain
getMemento
Last updated