Package io.inugami.api.listeners
Interface TaskFinishListener
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface TaskFinishListener
Inugami heavily use multi-threading principle. To handle when a task is completed, you can create listeners. To designed this listener we have the TaskFinishListener interface. This interface can be used in common use cases.- Since:
- 16 janv. 2017
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonFinish(long time, long delais, String name, Object result, Exception error)
-