Interface ICompletable
An interface used to indicate completion of such operation.
Namespace: IdleKit.Core
Assembly: cs.temp.dll.dll
Syntax
public interface ICompletable
Properties
IsComplete
Returns true if this ICompletable has completed.
Declaration
bool IsComplete { get; }
Property Value
Type | Description |
---|---|
Boolean |
Events
OnCompleted
Broadcast when the ICompletable completes.
Declaration
event Action<ICompletable> OnCompleted
Event Type
Type | Description |
---|---|
Action<ICompletable> |