AnimationCallback abstract class
The callback used when an animation frame becomes available.
abstract class AnimationCallback {
/**
* Invokes the command.
*
* @param timestamp the current timestamp
*/
void execute(int timestamp);
}
Subclasses
Methods
abstract void execute(int timestamp) #
Invokes the command.
@param timestamp the current timestamp