Skip to content

Instantly share code, notes, and snippets.

@berndruecker
Last active October 24, 2023 08:38
Show Gist options
  • Save berndruecker/22ef65cc1961a44d8afd299015610a40 to your computer and use it in GitHub Desktop.
Save berndruecker/22ef65cc1961a44d8afd299015610a40 to your computer and use it in GitHub Desktop.
Worker.java
public class FetchGoodsWorker {
@Worker(type = "fetchGoods")
public void fetchGoods(final ActivatedJob job) {
// your code goes here, you can access variables from the process via
// job.getVariables();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment