(method, params)
| 232 | } |
| 233 | }); |
| 234 | function invoke(method, params){ |
| 235 | self.postMessage(JSON.stringify({ |
| 236 | "action":"CallMethod", |
| 237 | "method":method, |
| 238 | "params":params |
| 239 | })); |
| 240 | }; |
| 241 | function create(obj_class, obj_name, serialized, object){ |
| 242 | if(!object) |
| 243 | throw "No Object Instance, cannot create"; |