Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. X
Hi,
I am having a stream (not a value stream) where data is coming from different things or sources. I want to know or I want to trigger an event when data are getting inserted into my stream means when the number of row is incrementing by 1. Is there any way to create a custom event to trigger this event? Or any other way to know the changes in my stream table?
Thanks,
Rajat
Solved! Go to Solution.
Due to the asynchronous nature of Streams you don't have an event you can trigger off unfortunately (unlike datatables which does have events)
You will have to use a different method or approach if you need this, either capture ahead of time someone is entering, or check the stream based on a schedule or other event.
Remember that checking the stream upon entry may not work as it is an asynchronous process.
Due to the asynchronous nature of Streams you don't have an event you can trigger off unfortunately (unlike datatables which does have events)
You will have to use a different method or approach if you need this, either capture ahead of time someone is entering, or check the stream based on a schedule or other event.
Remember that checking the stream upon entry may not work as it is an asynchronous process.
Hi @RajatBain
If you feel your question has been answered, please mark the previous response as the Accepted Solution for the benefit of others with the same question.
Regards.
--Sharon