[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Classes

  ClassDescription
public classAssemblyStrategyTreeBuilder
Builds a tree of assembly nodes given a strategy for how to join streams.

public classBaseAssemblyNode
Represents a node in a tree responsible for assembling outer join query results. The tree is double-linked, child nodes know each parent and parent know all child nodes. Each specific subclass of this abstract assembly node is dedicated to assembling results for a certain event stream.

public classBranchOptionalAssemblyNode
Assembly node for an event stream that is a branch with a single optional child node below it.

public classBranchRequiredAssemblyNode
Assembly node for an event stream that is a branch with a single required child node below it.

public classCartesianProdAssemblyNode
Assembly node for an event stream that is a branch with a two or more child nodes (required and optional) below it.

public classCartesianUtil
Helper class to compute the cartesian product of the events from two streams.

public classChildStreamResults
Structure to represent a list of event result rows per stream.

public classLeafAssemblyNode
Assembly node for an event stream that is a leaf with a no child nodes below it.

public classRootCartProdAssemblyNode
Assembly node for an event stream that is a root with a two or more child nodes below it.

public classRootOptionalAssemblyNode
Assembly node for an event stream that is a root with a one optional child node below it.

public classRootRequiredAssemblyNode
Assembly node for an event stream that is a root with a one required child node below it.

Interfaces

  InterfaceDescription
public interfaceResultAssembler
Interface for indicating a result in the form of a single row of multiple events, which could represent either a full result over all streams or a partial result over a subset of streams.