-
Notifications
You must be signed in to change notification settings - Fork 0
queue API methods session
Steve edited this page Apr 29, 2020
·
1 revision
Create a session with the given credentials.
Close an existing session.
const queue = client.createQueue({continueOnError:false});
queue.login("user", "password");
queue.logout();
// the following line actually starts the execution
queue.run();
Note: the methods above just add the commands to the queue. Execution starts when calling queue.run() or queue.runWithResults().
Documentation
-
Interfaces