DataBuffer Constructor (Transform, Int32) |
Initializes a new instance of the
DataBuffer class and prepares buffers for all inputs, as well as for the output data.
Namespace:
Dundas.BI.Data.Transforms
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (10.0.0.1002)
Syntaxpublic DataBuffer(
Transform transform,
int capacity
)
Public Sub New (
transform As Transform,
capacity As Integer
)
public:
DataBuffer(
Transform^ transform,
int capacity
)
new :
transform : Transform *
capacity : int -> DataBufferParameters
- transform
- Type: Dundas.BI.Data.TransformsTransform
The transform. - capacity
- Type: SystemInt32
The maximum number of records to be buffered. Use -1 if all records must be cached.
RemarksUse this constructor when data for all inputs and the output must be cached.
See Also