Skip to main content
1-Visitor
July 8, 2021
Solved

How can I know if any row is been added to my stream? I want to trigger an event on stream entry.

  • July 8, 2021
  • 2 replies
  • 1787 views

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

Best answer by PaiChung

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.

2 replies

PaiChung22-Sapphire IAnswer
22-Sapphire I
July 12, 2021

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.

Support
July 23, 2021

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