IPriorityTaskRunCanceled 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)
Syntaxvoid 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.
             
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