[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Assembly: NEsper (in NEsper.dll)
Verifies that the tree-like structure representing which streams join (lookup) into which sub-streams
is correct, ie. all streams are included and none are listed twice.
Namespace: net.esper.eql.join.plan
Assembly: NEsper (in NEsper.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Shared Sub VerifyJoinedPerStream ( _ rootStream As Integer, _ streamsJoinedPerStream As IDictionary(Of Integer, Integer()) _ ) |
C# |
---|
public static void VerifyJoinedPerStream ( int rootStream, IDictionary<int, int[]> streamsJoinedPerStream ) |
Visual C++ |
---|
public: static void VerifyJoinedPerStream ( int rootStream, IDictionary<int, array<int>^>^ streamsJoinedPerStream ) |
Parameters
- rootStream
- System.Int32
is the stream supplying the incoming event
- streamsJoinedPerStream
- System.Collections.Generic.IDictionary<(Of TKey, TValue>)
is keyed by the from-stream number and contains as values all stream numbers of lookup into to-streams.