Package | Description |
---|---|
javafx.concurrent |
Provides the set of classes for javafx.task.
|
Modifier and Type | Field and Description |
---|---|
private Task<V> |
Service.task
A reference to the last task that was executed.
|
private Task<V> |
Task.TaskCallable.task
The Task that is going to use this TaskCallable
|
Modifier and Type | Method and Description |
---|---|
protected abstract Task<V> |
Service.createTask()
Invoked after the Service is started on the JavaFX Application Thread.
|
Modifier and Type | Method and Description |
---|---|
private java.util.TimerTask |
ScheduledService.createTimerTask(Task<V> task)
Creates the TimerTask used for delaying execution.
|
protected void |
ScheduledService.executeTask(Task<V> task) |
protected void |
Service.executeTask(Task<V> task)
Uses the
executor defined on this Service to execute the
given task. |
private void |
ScheduledService.executeTaskNow(Task<V> task)
Called when it is time to actually execute the task (any delay has by now been
accounted for).
|