Streaming query

cjsekhar
i put the 3 sec delay in my code what happens when it connects to stream. it will get all changed packets from last 3 secs. please clarify??
  • sujith
    Hi @cjsekhar,
    Don't block websockets streaming thread, you will loose data. Never do computation on the thread you receive streaming data. Every time you receive the tick, pass it on to some other thread for computations.
Sign In or Register to comment.