JFXtras (http://jfxtras.org/) XWorker. , , , , JavaFX . , , , .
: http://jfxtras.googlecode.com/svn/site/javadoc/release-0.6/org.jfxtras.async/org.jfxtras.async.XWorker.html
:
var currentImage:Image;
var worker = XWorker {
inBackground: function() {
return Image {url: currentFile.toURL().toString(), height: imageHeight};
}
onDone: function(result) {
currentImage = result as Image;
}
}
, inBackground, Swing. , onDone. onDone JavaFX Event Dispatch Thread ( , JavaFX), . . - , " ". , , , . JavaFX , , Java (, JPA EntityManager) , BlockingQueue. "/".
, , " ", /. :
var worker = XWorker {
inBackground: function() {
while (true) {
publish(someStuff);
}
}
process: function(someStuff: SomeStuff[]):Void {
}
onDone: function(result) {
currentImage = result as Image;
}
}
, , - .