• Quick Start
  • Booting
  • Platform
  • Portals
  • References
    • API Reference TOI3
    • IIP Reference
  • Resources
ARRIS Enterprises, Inc. Confidential Information

ToiMultipleResult

ToiMultipleResult 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.

5.1.p5

Copyright (c) 2017 ARRIS Enterprises, LLC. All Rights Reserved. ARRIS Enterprises, LLC. Confidential Information.