[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Returns default nesting order for a given number of streams for a certain stream.
Example: numStreams = 5, forStream = 2, result = {0, 1, 3, 4}
The resulting array has all streams except the forStream, in ascdending order.
Namespace: net.esper.eql.join.plan
Assembly:
NEsper (in NEsper.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Shared Function BuildDefaultNestingOrder ( _
numStreams As Integer, _
forStream As Integer _
) As Integer() |
C# |
---|
public static int[] BuildDefaultNestingOrder (
int numStreams,
int forStream
) |
Visual C++ |
---|
public:
static array<int>^ BuildDefaultNestingOrder (
int numStreams,
int forStream
) |
Parameters
- numStreams
- System.Int32
number of streams
- forStream
- System.Int32
stream to generate a nesting order for
Return Value
int array with all stream numbers Starting at 0 to (numStreams - 1) leaving the
forStream out