Code: Select all
SFSExtension.send("Message1", ...);
SFSExtension.send("Message2", ...);
SFSExtension.send("Message3", ...);Or do I need to have the client tell the server when it finishes processing each message before the next one can be sent?
Code: Select all
SFSExtension.send("Message1", ...);
SFSExtension.send("Message2", ...);
SFSExtension.send("Message3", ...);Messages on the client are handled sequentially so there should be no problem.Can I be certain that my OnExtensionResponse function on the client will always process them one at a time, in the order they were sent, even if one of the messages potentially takes a long time to process?