Click or drag to resize

AbstractInvocableRunCanceled Method

.NET API Reference for Oracle® Coherence Community Edition
(14.1.1.0)
E55634-01
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: 14.1.1.1 (14.1.1.1)
Syntax
C#
public virtual void RunCanceled(
	bool isAbandoned
)

Parameters

isAbandoned
Type: SystemBoolean
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

IPriorityTaskRunCanceled(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.

This implementation is a no-op.

See Also