DataFunctionCompletionCallback Delegate

Spotfire 14.3 API Reference
A delegate the is used to provide a callback for the execution of a DataFunction.

Namespace:  Spotfire.Dxp.Data.DataFunctions
Assembly:  Spotfire.Dxp.Data (in Spotfire.Dxp.Data.dll) Version: 65.0.19510.3242 (65.0.19510.3242)
Syntax

C#
public delegate void DataFunctionCompletionCallback(
	bool completedSuccessfully
)

Parameters

completedSuccessfully
Type: SystemBoolean
A value that is true if the execution completed successfully; false otherwise.
Remarks

Be careful when using the callback since it is easy to cause a deadlock if blocking on the result of the callback. The callback is not guaranteed to be executed on the application thread so invoke into the application thread if document modification is required.
Version Information

Supported in: 14.3, 14.2, 14.1, 14.0, 12.5, 12.4, 12.3, 12.2, 12.1, 12.0, 11.8
See Also

Reference