| ARRIS Enterprises, Inc. Confidential Information |
ToiMultipleResultToiMultipleResult provides output result for all the interface functions which have multiple outputs. Usage example: The interface serviceA has function foo() with two outputs:
long a;
long b;
And the other interface serviceB has function bar() with two outputs:
string c;
string d;
The JavaScript portal will be coded like:
var resultA = serviceA.foo();
alert(resultA.a);
alert(resultA.b);
var resultB = serviceB.bar();
alert(resultB.c);
alert(resultB.d);
Please refer to the interface/function page for the individual definition of various output data.
|