Interface GollumCallbackGetGeneric
-
- All Implemented Interfaces:
public interface GollumCallbackGetGeneric<T>Interface for callback system
This Interface is generic
When a task is too long for main thread, it is executed in background and this Callback is called in the main thread when it is terminated
-
-
Method Summary
Modifier and Type Method Description abstract voiddone(@Nullable() T value, @Nullable() GollumException e)Method called when a task is terminated -
-
Method Detail
-
done
abstract void done(@Nullable() T value, @Nullable() GollumException e)
Method called when a task is terminated
- Parameters:
value- : return of operatione- : null if no error
-
-
-
-