Click or drag to resize
Akka.NETICancelable Interface
Signifies something that can be canceled

Namespace:  Akka.Actor
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public interface ICancelable

The ICancelable type exposes the following members.

Properties
  NameDescription
Public propertyIsCancellationRequested
Gets a value indicating whether cancellation has been requested
Public propertyToken
TBD
Top
Methods
  NameDescription
Public methodCancel
Communicates a request for cancellation.
Public methodCancel(Boolean)
Communicates a request for cancellation, and specifies whether remaining callbacks and cancelable operations should be processed.
Public methodCancelAfter(Int32)
Schedules a cancel operation on this cancelable after the specified number of milliseconds.
Public methodCancelAfter(TimeSpan)
Schedules a cancel operation on this cancelable after the specified delay.
Top
Extension Methods
  NameDescription
Public Extension MethodCancelIfNotNull
If cancelable is not null it's canceled.
(Defined by CancelableExtensions.)
Top
See Also