| For CTS, is it guaranteed that messages will be transmitted in sequence? (obviously, there's no guarantee they'll arrive in sequence...), and if not, can I at least be certain that within the text body that the messages are in it are in sequence (excluding retransmittals)? Also, I'm trying to parallelize the processing of extracting messages from a packet and was hoping to give each message in a text body to a different thread, but our processes require a comparison between the most recent messages for a symbol and previous messages for that symbol, and I'm afraid that two messages in a single text body may be for the same symbol, which would mean I couldn't just split it up that way. |