Hi,
I am trying to understand how $$ globals work. OScript language reference says:
"$ is used to access globals that are visible to the entire application, while $$ globals are visible only to the current thread."
https://knowledge.opentext.com/knowledge/llisapi.dll/fetch/2001/15080935/-15106263/15106294/15106295/16376487/42329092/oscript/behaviour.html
What does it mean "visible only to a current thread" and "visible to the entire application"?
I thought oscript code executes inside OscriptVM sandbox and there is no connection to other OscriptVMs. So every $ variable is visible inside current OScriptVM (and inside only current thread).
But it sounds like $ globals can cross those boundaries and should be visible from other threads/OscriptVMs.