
Security News
Scaling Socket from Zero to 10,000+ Organizations
Socket CEO Feross Aboukhadijeh shares lessons from scaling a developer security startup to 10,000+ organizations in this founder interview.
@opuscapita/fsm-task-manager
Advanced tools
FSM Task(Work) manager is an extension to finite state machine. It manages existing tasks (stateful full objects, e.g. invoice) within the lifecycle specified in finite state machine (definition.
Example cound be found here
context machine = new Machine({
machineDefinition: new MachineDefinition({schema,actions,conditions}),
context
});
const taskManager = new TaskManager({
machine: machine,
search: search,
update: update
});
//function that return promise that is resolved with task list
function search(searchParams) {
return new Promise((resolve, reject) => {
setTimeout(() => {
resolve([{status: ''}, {status: ''}]);
}, 500)
})
};
//function that return promise that is resolved after object saving
function update(object) {
return new Promise((resolve, reject) => {
//some hard-working persistent saving code
resolve();
})
};
After configuration there is only one thing is left behind - to start task list monitoring.
taskManager.run({ timeout: 1000 });
timeout argument indicates the frequency of calling search action and checking for available automatic event / sending events (in case found auto-transitions);
If the time has come to kill the process, you have to do the next:
taskManager.stop();
This method return true/false in case of correct/incorrect process finish, correspondingly.
Sometime you may need to get the process statistic (currently available values are: machine name, start & end timestamps)
taskManager.processCache
This field is an object with next signature: {<timer_descriptor> : { , , }}
TBD: increase process cache notation usability TBD: add 1 by 1 event sending queue
You might need an ability to send event to an object with further saving. If you configured TaskManager properly and it knows how to save objects, next two code snippets do the same:
//passed as constructor arg to TaskManager
const update = (object) => {
<some async object update code>
return Promise
};
machine.sendEvent({object, event, request}).then(({object}) => {
return update(object);
})
----equals---
taskManager.sendEvent({object, event, request})
Also you might want to start the workflow with further object saving. If you configured TaskManager properly and it knows how to save objects, next to code snippets do the same:
//passed as constructor arg to TaskManager
const update = (object) => {
<some async object update code>
return Promise
};
machine.start({object}).then(({object}) => {
return update(object);
})
----equals---
taskManager.start({object})
FAQs
Task manager for FSM workflow
We found that @opuscapita/fsm-task-manager demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CEO Feross Aboukhadijeh shares lessons from scaling a developer security startup to 10,000+ organizations in this founder interview.

Research
Socket Threat Research maps a rare inside look at OtterCookie’s npm-Vercel-GitHub chain, adding 197 malicious packages and evidence of North Korean operators.

Research
Socket researchers identified a malicious Chrome extension that manipulates Raydium swaps to inject an undisclosed SOL transfer, quietly routing fees to an attacker wallet.