NodeShellRaiseProgressEvent Method

Raises progress event for the message set by RaiseProcessingBeginEvent(GraphMessage). At most one of the arguments can be set to a non-negative value. If overridden, the base implementation MUST be called.

Definition

Namespace: Quine.Graph
Assembly: Quine.Graph (in Quine.Graph.dll) Version: 1.0.0+0ea0706914ee4edf2b0ed66bec3ab4d062a43b68
C#
protected virtual void RaiseProgressEvent(
	long? processedSize = null,
	long? sizeIncrement = null,
	float? progress = null
)

Parameters

processedSize  NullableInt64  (Optional)
Set to report current absolute size of processed data.
sizeIncrement  NullableInt64  (Optional)
Set to report incremental size of processed data.
progress  NullableSingle  (Optional)
Set to report current absolute progress as fraction between 0 and 1.

See Also