Package io.inugami.api.listeners
Interface TaskStartListener
-
- 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 TaskStartListener
Inugami heavily use multi-threading principle. To handle when a task starting, you can create listeners. To designed this listener we have the TaskStartListener 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 voidonStart(long time, String name)
-
-
-
Method Detail
-
onStart
void onStart(long time, String name)
-
-