This method will be called if and only if all attempts to interrupt this task were unsuccesful in stopping the execution or if the execution was canceled before it had a chance to run at all.

Namespace: Tangosol.Net
Assembly: Coherence (in Coherence.dll) Version: 12.1.2.0 (12.1.2.0)

Syntax

C#
public virtual void RunCanceled(
	bool isAbandoned
)

Parameters

isAbandoned
Type: System..::..Boolean
true if the task has timed-out, but all attempts to interrupt it were unsuccesful in stopping the execution; otherwise the task was never started.

Implements

IPriorityTask..::..RunCanceled(Boolean)

Remarks

Since this method is usually called on a service thread, implementors must exercise extreme caution since any delay introduced by the implementation will cause a delay of the corresponding service.

See Also