Interface GollumCallbackGetInteger
-
- All Implemented Interfaces:
public interface GollumCallbackGetInteger
Interface for callback system
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 void
done(int result, GollumException e)
Method called when a task is terminated -
-
Method Detail
-
done
abstract void done(int result, GollumException e)
Method called when a task is terminated
- Parameters:
result
- return of operation.e
- An optional exception passed by the callback.
-
-
-
-