Hi, I'm writing a program with Lua processing the captured data in real time. I need to process data collected at the end of each minute (I collect the data for a minute or any other suitable period and at the end of the period I will process the data collected withen this peroid only and start collecting the data for the next period) I'm afraid of losing data in the time between processing data and starting collecting data again in the new period,is it possible to happen? is there any hint can be given to make sure that all data are captured and processed carefully? asked 12 Feb '12, 23:05 Leena |
One Answer:
Since you kind of post-process each minute any way, I would say your best bet would be to use dumpcap with a duration limit of 1 minute. That will create files of one-minute intervals which you can then process individually. answered 13 Feb '12, 02:57 SYN-bit ♦♦ |
I think you should ask that in a new question; not in this post.
Thanks SYNbit for your answer, but I need the time of collecting to start processing also, just a part of the process will be at the time end