Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8102689

Extension of javafx.concurrent.Service to support polling

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Duplicate
    • Icon: P4 P4
    • 8
    • fx2.1
    • javafx
    • All

      To implement a periodic execution of Tasks you have currently to manually restart a service with registering a listener:

      Service<...> service;

       service.stateProperty().addListener(new ChangeListener<Worker.State>() {
                  public void changed(ObservableValue<? extends Worker.State> observable, Worker.State oldState, Worker.State newState) {
                      if (newState.equals(Worker.State.SUCCEEDED) || newState.equals(Worker.State.FAILED)) {
                          service.reset();
                          service.start();
                      }
                  }

              });


      An out-of-the-box support for polling in javafx.concurrent.Service is appreciated: long-pooling of RESTful services is a common practice for the implementation of server push.

            rbair Richard Bair (Inactive)
            abienjfx Adam Bien (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: