- 
- All Known Implementing Classes:
- ScheduledService,- Service,- Task
 
 public interface Worker<V>A Worker is an object which performs some work in one or more background threads, and whose state is observable and available to JavaFX applications and is usable from the main JavaFX Application thread. This interface is primarily implemented by both TaskandService, providing a common API among both classes which makes it easier for libraries and frameworks to provide workers which work well when developing user interfaces.A Worker may or may not be reusable depending on the implementation. A Task, for example, is not reusable while aServiceis.A Worker has a well defined life cycle. Every Worker begins in the Worker.State.READYstate. When the Worker has been scheduled for work (for example, when a Service'sService.start()method is called), it is transitioned toWorker.State.SCHEDULED. Even Workers which are not technically scheduled, but started immediately (such as withFutureTask.run()) will transition through theWorker.State.SCHEDULEDon its way to theWorker.State.RUNNINGstate.When the Worker is actually performing its work, the state will have been transitioned to Worker.State.RUNNING. If the Worker completes normally, it will end in theWorker.State.SUCCEEDEDstate, and the result of the Worker will be set as thevalueproperty. If however an Exception occurs during the execution of the Worker, then the state will be set toWorker.State.FAILEDand theexceptionproperty will be set to the Exception which occurred.At any time prior to the conclusion of the Worker (that is, if the state is not already Worker.State.SUCCEEDEDorWorker.State.FAILED) the developer may invoke thecancel()method. If called, the Worker will cease execution (if possible, including use of Thread.interrupt) and the state changed toWorker.State.CANCELLED.The only valid beginning state for a Worker is Worker.State.READY, and the valid ending states areWorker.State.CANCELLED,Worker.State.SUCCEEDED, andWorker.State.FAILED. Therunningproperty is set to true when the state is eitherWorker.State.SCHEDULEDorWorker.State.RUNNING.The Worker's progress can be monitored via three different properties, totalWork,workDone, andprogress. These properties are set by the actual implementation of the Worker interface, but can be observed by anybody. TheworkDoneis a number between -1 (meaning indeterminate progress) andtotalWork, inclusive. WhenworkDone == totalWorktheprogresswill be 100% (or 1).totalWorkwill be a number between -1 and Long.MAX_VALUE, inclusive. The progress will be either -1 (meaning indeterminate), or a value between 0 and 1, inclusive, representing 0% through 100%.A Worker which is in the Worker.State.READYorWorker.State.SCHEDULEDstates will always haveworkDoneandprogressset to -1. A Worker which is in theWorker.State.SUCCEEDEDstate will always haveworkDone == totalWorkandprogress == 1. In any other state, the values for these properties may be any value in their respective valid ranges.- Since:
- JavaFX 2.0
 
- 
- 
Property SummaryProperties Type Property Description ReadOnlyObjectProperty<Throwable>exceptionGets the ReadOnlyObjectProperty representing any exception which occurred.ReadOnlyStringPropertymessageGets the ReadOnlyStringProperty representing the message.ReadOnlyDoublePropertyprogressGets the ReadOnlyDoubleProperty representing the progress.ReadOnlyBooleanPropertyrunningGets the ReadOnlyBooleanProperty representing whether the Worker is running.ReadOnlyObjectProperty<Worker.State>stateGets the ReadOnlyObjectProperty representing the current state.ReadOnlyStringPropertytitleGets the ReadOnlyStringProperty representing the title.ReadOnlyDoublePropertytotalWorkGets the ReadOnlyDoubleProperty representing the maximum amount of work that needs to be done.ReadOnlyObjectProperty<V>valueGets the ReadOnlyObjectProperty representing the value.ReadOnlyDoublePropertyworkDoneGets the ReadOnlyDoubleProperty representing the current progress.
 - 
Nested Class SummaryNested Classes Modifier and Type Interface Description static classWorker.StateThe state of a Worker.
 - 
Method SummaryModifier and Type Method Description booleancancel()Terminates execution of this Worker.ReadOnlyObjectProperty<Throwable>exceptionProperty()Gets the ReadOnlyObjectProperty representing any exception which occurred.ThrowablegetException()Indicates the exception which occurred while the Worker was running, if any.StringgetMessage()Gets a message associated with the current state of this Worker.doublegetProgress()Indicates the current progress of this Worker in terms of percent complete.Worker.StategetState()Specifies the current state of this Worker.StringgetTitle()An optional title that should be associated with this Worker.doublegetTotalWork()Indicates a maximum value for theworkDoneProperty()property.VgetValue()Specifies the value, or result, of this Worker.doublegetWorkDone()Indicates the current amount of work that has been completed.booleanisRunning()True if the state is either SCHEDULED or RUNNING.ReadOnlyStringPropertymessageProperty()Gets the ReadOnlyStringProperty representing the message.ReadOnlyDoublePropertyprogressProperty()Gets the ReadOnlyDoubleProperty representing the progress.ReadOnlyBooleanPropertyrunningProperty()Gets the ReadOnlyBooleanProperty representing whether the Worker is running.ReadOnlyObjectProperty<Worker.State>stateProperty()Gets the ReadOnlyObjectProperty representing the current state.ReadOnlyStringPropertytitleProperty()Gets the ReadOnlyStringProperty representing the title.ReadOnlyDoublePropertytotalWorkProperty()Gets the ReadOnlyDoubleProperty representing the maximum amount of work that needs to be done.ReadOnlyObjectProperty<V>valueProperty()Gets the ReadOnlyObjectProperty representing the value.ReadOnlyDoublePropertyworkDoneProperty()Gets the ReadOnlyDoubleProperty representing the current progress.
 
- 
- 
- 
Property Detail- 
stateReadOnlyObjectProperty<Worker.State> stateProperty Gets the ReadOnlyObjectProperty representing the current state.- See Also:
- getState()
 
 - 
valueReadOnlyObjectProperty<V> valueProperty Gets the ReadOnlyObjectProperty representing the value.- See Also:
- getValue()
 
 - 
exceptionReadOnlyObjectProperty<Throwable> exceptionProperty Gets the ReadOnlyObjectProperty representing any exception which occurred.- See Also:
- getException()
 
 - 
workDoneReadOnlyDoubleProperty workDoneProperty Gets the ReadOnlyDoubleProperty representing the current progress.- See Also:
- getWorkDone()
 
 - 
totalWorkReadOnlyDoubleProperty totalWorkProperty Gets the ReadOnlyDoubleProperty representing the maximum amount of work that needs to be done. These "work units" have meaning to the Worker implementation, such as the number of bytes that need to be downloaded or the number of images to process or some other such metric.- See Also:
- getTotalWork()
 
 - 
progressReadOnlyDoubleProperty progressProperty Gets the ReadOnlyDoubleProperty representing the progress.- See Also:
- getProgress()
 
 - 
runningReadOnlyBooleanProperty runningProperty Gets the ReadOnlyBooleanProperty representing whether the Worker is running.- See Also:
- isRunning()
 
 - 
messageReadOnlyStringProperty messageProperty Gets the ReadOnlyStringProperty representing the message.- See Also:
- getMessage()
 
 - 
titleReadOnlyStringProperty titleProperty Gets the ReadOnlyStringProperty representing the title.- See Also:
- getTitle()
 
 
- 
 - 
Method Detail- 
getStateWorker.State getState() Specifies the current state of this Worker. The initial value is State.READY. A Task may be restarted, in which case it will progress from one of these end states (SUCCEEDED, CANCELLED, or FAILED) back to READY and then immediately to SCHEDULED and RUNNING. These state transitions may occur immediately one after the other, but will always occur in the prescribed order.- Returns:
- The current state of this Worker
 
 - 
statePropertyReadOnlyObjectProperty<Worker.State> stateProperty() Gets the ReadOnlyObjectProperty representing the current state.- See Also:
- getState()
 
 - 
getValueV getValue() Specifies the value, or result, of this Worker. This is set upon entering the SUCCEEDED state, and cleared (set to null) if the Worker is reinitialized (that is, if the Worker is a reusable Worker and is reset or restarted).- Returns:
- the current value of this Worker
 
 - 
valuePropertyReadOnlyObjectProperty<V> valueProperty() Gets the ReadOnlyObjectProperty representing the value.- See Also:
- getValue()
 
 - 
getExceptionThrowable getException() Indicates the exception which occurred while the Worker was running, if any. If this property value isnull, there is no known exception, even if the status is FAILED. If this property is notnull, it will most likely contain an exception that describes the cause of failure.- Returns:
- the exception, if one occurred
 
 - 
exceptionPropertyReadOnlyObjectProperty<Throwable> exceptionProperty() Gets the ReadOnlyObjectProperty representing any exception which occurred.- See Also:
- getException()
 
 - 
getWorkDonedouble getWorkDone() Indicates the current amount of work that has been completed. Zero or a positive value indicate progress toward completion. This variables value may or may not change from its default value depending on the specific Worker implementation. A value of -1 means that the current amount of work done cannot be determined (ie: it is indeterminate). The value of this property is always less than or equal to totalWork.- Returns:
- the amount of work done
- See Also:
- totalWorkProperty(),- progressProperty()
 
 - 
workDonePropertyReadOnlyDoubleProperty workDoneProperty() Gets the ReadOnlyDoubleProperty representing the current progress.- See Also:
- getWorkDone()
 
 - 
getTotalWorkdouble getTotalWork() Indicates a maximum value for theworkDoneProperty()property. The totalWork will either be -1 (indicating that the amount of work to do is indeterminate), or it will be a non-zero value less than or equal to Double.MAX_VALUE.- Returns:
- the total work to be done
- See Also:
- workDoneProperty(),- progressProperty()
 
 - 
totalWorkPropertyReadOnlyDoubleProperty totalWorkProperty() Gets the ReadOnlyDoubleProperty representing the maximum amount of work that needs to be done. These "work units" have meaning to the Worker implementation, such as the number of bytes that need to be downloaded or the number of images to process or some other such metric.- See Also:
- getTotalWork()
 
 - 
getProgressdouble getProgress() Indicates the current progress of this Worker in terms of percent complete. A value between zero and one indicates progress toward completion. A value of -1 means that the current progress cannot be determined (that is, it is indeterminate). This property may or may not change from its default value of -1 depending on the specific Worker implementation.- Returns:
- the current progress
- See Also:
- workDoneProperty(),- totalWorkProperty()
 
 - 
progressPropertyReadOnlyDoubleProperty progressProperty() Gets the ReadOnlyDoubleProperty representing the progress.- See Also:
- getProgress()
 
 - 
isRunningboolean isRunning() True if the state is either SCHEDULED or RUNNING. When binding a Worker to aProgressIndicator, you will typically bind the visibility of the ProgressIndicator to the Worker's running property, and the progress of the ProgressIndicator to the Worker's progress property.- Returns:
- true if this Worker is running
 
 - 
runningPropertyReadOnlyBooleanProperty runningProperty() Gets the ReadOnlyBooleanProperty representing whether the Worker is running.- See Also:
- isRunning()
 
 - 
getMessageString getMessage() Gets a message associated with the current state of this Worker. This may be something such as "Processing image 1 of 3", for example.- Returns:
- the current message
 
 - 
messagePropertyReadOnlyStringProperty messageProperty() Gets the ReadOnlyStringProperty representing the message.- See Also:
- getMessage()
 
 - 
getTitleString getTitle() An optional title that should be associated with this Worker. This may be something such as "Modifying Images".- Returns:
- the current title
 
 - 
titlePropertyReadOnlyStringProperty titleProperty() Gets the ReadOnlyStringProperty representing the title.- See Also:
- getTitle()
 
 - 
cancelboolean cancel() Terminates execution of this Worker. Calling this method will either remove this Worker from the execution queue or stop execution.- Returns:
- returns true if the cancel was successful
 
 
- 
 
-