Package javafx.animation
Interface TimerReceiver
public interface TimerReceiver
A TimerReceiver receives per-frame pulses from the MasterTimer.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
handle
(long now) Callback triggered to send a message to the TimerReceiver
-
Method Details
-
handle
void handle(long now) Callback triggered to send a message to the TimerReceiver- Parameters:
now
- The timestamp of the current frame given in nanoseconds. This value will be the same for allAnimationTimers
called during one frame.
-