java - JavaFX Transition Equivalent -
i have non-gui application want asynchronously interpolate data on time.
i had @ javafx transition api , looked ideal. however, transitions api work has run part of javafx application context - don't want add overhead unnecessarily for.
i wondering if suggest equivalent? or i'm going have write myself?
i'd use java.util.timer
that. can give timertask
(basically runnable
) execute every x ms (its period). runs on background thread, assume meant asynchronously?
api: http://docs.oracle.com/javase/8/docs/api/java/util/timer.html
Comments
Post a Comment