In-Memory DB Functions
In-Memory Database Functions
Get Object
Object ins.getGlobalObject(String name)
Syntax
var obj=ins.getGlobalObject("My_Obj");
if (obj!==null) {
var item="Previous_Value";
if (obj[item]!==null) {
ins.notify("info","Get Global Object",obj[item]);
}
}
return obj[item];