sam-goodwin / eventual

Build scalable and durable micro-services with APIs, Messaging and Workflows
https://docs.eventual.ai
MIT License
174 stars 4 forks source link

feat: dictionary streams #325

Closed thantos closed 1 year ago

thantos commented 1 year ago
dict.stream("myStream", (item) => {
    console.log(item.operation, item.newValue, item.key, item.namespace);
});

dictionaryStream("myStream", dict, (item) => {
    console.log(item.operation, item.newValue, item.key, item.namespace);
})