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

Implementation for a multidimensional cube that can be configured with the type of cell to store. This cube implementation grows in each dimension as new dimension members are made known to the cube. If cells are added for dimension members that have not been encountered before, then the new dimension members are added to the known dimension members and the cube is redimensioned, ie. grows. In design of this class, performance is important in the following areas: - Access to cells should be very fast in the normal case. Normal case is that the cell for all dimension members (the particular coordinate) already exists. This class uses a map of dimension member set (coordinates) to fact array ordinal which gets great performance.

Namespace: net.esper.view.stat.olap
Assembly:   NEsper (in NEsper.dll)

Syntax

Visual Basic (Declaration)
Public NotInheritable Class MultidimCubeImpl(Of V) _
	Implements MultidimCube(Of V)
C#
public sealed class MultidimCubeImpl<V> : MultidimCube<V>
Visual C++
generic<typename V>
public ref class MultidimCubeImpl sealed : MultidimCube<V>

Type Parameters

V

Inheritance Hierarchy

System.Object
  net.esper.view.stat.olap.MultidimCubeImpl<(Of V>)