[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Compute an array of supersets of sub stream numbers per stream, for at least 3 or more streams.
Namespace: net.esper.eql.join.assemble
Assembly:
NEsper (in NEsper.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Shared Function ComputeCombined ( _
subStreamsPerChild As Integer()() _
) As Integer()() |
C# |
---|
public static int[][] ComputeCombined (
int[][] subStreamsPerChild
) |
Visual C++ |
---|
public:
static array<array<int>^>^ ComputeCombined (
array<array<int>^>^ subStreamsPerChild
) |
Parameters
- subStreamsPerChild
- System.Int32[][]
is for each stream number a list of direct child sub streams
Return Value
an array in with length (subStreamsPerChild.length - 2) in which
array[0] contains the streams for subStreamsPerChild[0] and subStreamsPerChild[1] combined, and
array[1] contains the streams for subStreamsPerChild[0], subStreamsPerChild[1] and subStreamsPerChild[2] combined