PipelineComponent.PrimeOutput Method
Called at run time for source components and transformation components with asynchronous outputs to let these components add rows to the output buffers.
Espacio de nombres: Microsoft.SqlServer.Dts.Pipeline
Ensamblado: Microsoft.SqlServer.PipelineHost (in microsoft.sqlserver.pipelinehost.dll)
Sintaxis
'Declaración
Public Overridable Sub PrimeOutput ( _
outputs As Integer, _
outputIDs As Integer(), _
buffers As PipelineBuffer() _
)
public virtual void PrimeOutput (
int outputs,
int[] outputIDs,
PipelineBuffer[] buffers
)
public:
virtual void PrimeOutput (
int outputs,
array<int>^ outputIDs,
array<PipelineBuffer^>^ buffers
)
public void PrimeOutput (
int outputs,
int[] outputIDs,
PipelineBuffer[] buffers
)
public function PrimeOutput (
outputs : int,
outputIDs : int[],
buffers : PipelineBuffer[]
)
Parámetros
- outputs
The number of elements in the outputIDs and buffers arrays.
- outputIDs
An array of IDTSOutput90 ID's.
- buffers
An array of PipelineBuffer objects.
Notas
The number of elements in the outputIDs and buffers array is determined by the number of IDTSOutput90 objects in the IDTSOutputCollection90 collection of the component connected to an IDTSPath90 object.
Each element in the outputIDs array has a PipelineBuffer at the same index in the buffers array.
Rows are added to the PipelineBuffer by calling the AddRow method, and when finished, the SetEndOfRowset method is called to notify the data flow task that the component is finished adding rows.
PrimeOutput is called for components whose SynchronousInputID property is set to zero.
Seguridad para subprocesos
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Plataformas
Plataformas de desarrollo
Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.
Plataformas de destino
Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.
Vea también
Referencia
PipelineComponent Class
PipelineComponent Members
Microsoft.SqlServer.Dts.Pipeline Namespace