Last active
October 24, 2023 08:38
-
-
Save berndruecker/22ef65cc1961a44d8afd299015610a40 to your computer and use it in GitHub Desktop.
Worker.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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