Interface ITaskCompletedHandler
- Functional Interface:
 - This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
 
Handler which is called when a task is completed.
- 
Method Summary
Modifier and TypeMethodDescriptionvoidCalled when a task is completed. 
- 
Method Details
- 
onTaskCompleted
Called when a task is completed.- Parameters:
 type- The type of task that was completed.
 
 -