ToiMultipleResult Interface Reference


Description

ToiMultipleResult provides output result for all the interface functions which have multiple output. Usage example: The interface serviceA has function foo() with two output: long a; long b;

And the other interface serviceB has function bar() with two output: 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.

import "ToiMultipleResult.idl";