Skip to content

Instantly share code, notes, and snippets.

@hendrikebbers
Created November 1, 2014 16:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hendrikebbers/fb4e75887bb6e1c10388 to your computer and use it in GitHub Desktop.
Save hendrikebbers/fb4e75887bb6e1c10388 to your computer and use it in GitHub Desktop.
ProcessChain in Swing
ProcessChain.create().
addSupplierInPlatformThread(() -> myTextField.getText()).
addFunctionInExecutor((t) -> WeatherService.getWeather(t)).
addConsumerInPlatformThread((t) -> myLabel.setText(t)).onException((e) -> {
myLabel.setText("Error");
e.printStackTrace();
}).run();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment