Sends the given tuple to the given output port of the .NET Operator for use by the application.

If the given tuple is created by this operator then it can be reused when the call to SendOutput() returns, as the application is done with the tuple at that point.

Namespace: StreamBase.SB
Assembly: StreamBase.SB.Client (in StreamBase.SB.Client.dll) Version: 7.7.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public void SendOutput(
	int outputPort,
	Tuple tuple
)
Public Sub SendOutput ( _
	outputPort As Integer, _
	tuple As Tuple _
)
public:
void SendOutput(
	int outputPort, 
	Tuple^ tuple
)

Parameters

outputPort
Int32
the (zero-based) number of the output port on which this tuple is to be sent.
tuple
Tuple
tuple to send.

Exceptions

ExceptionCondition
StreamBase.SB..::..StreamBaseExceptionif an error has occurred during processing.

See Also