Skip to main content
1-Visitor
October 28, 2020
Solved

Regarding Pushing Stream entries

  • October 28, 2020
  • 1 reply
  • 1185 views

Hi team,

 

I have few records in my infotable and I want to push each record into stream. I tried to use addstreamentry service in for loop but it is pushing only the last entry into the stream.

 

Can someone please let me know how to push multiple entries into stream.

Best answer by snehanjali
I was able to figure out pushing multiple entries into stream. The issue is stream does not take 2 records with same time stamp. My for loop is trying to push record in same millisecond. So I put a pause for 1 millisecond and it worked

1 reply

snehanjali1-VisitorAuthorAnswer
1-Visitor
October 28, 2020
I was able to figure out pushing multiple entries into stream. The issue is stream does not take 2 records with same time stamp. My for loop is trying to push record in same millisecond. So I put a pause for 1 millisecond and it worked