Hello,
I am writing some code that receives a websocket message from an outside source that is then parsed by a JSON object.
Once parsed additional processing is handed off to other functions, which are called and refer to the same JSON object.
I started to wonder if this is all reentrant -- i.e. when during the processing of one websocket message another one arrives, whether the second set of calls are done via an new JSCON instance, or whether the same is reused / overwritten.