We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
See this article and the idea how to use annotations:
https://dzone.com/articles/ultra-fast-microservices-part-2-when-microstream-m
public class MyBusinessCase { private final long id; private final String name; private final String description; private final int rating; @WorkflowInstance public Product( @WorkitemProperty("id") final long id, @WorkitemProperty("name") final String name, @WorkitemProperty("description") final String description, @WorkitemProperty("rating") final int rating){ //... } }
...and instantiating the engine
@WorkflowGroup("Invoice") public class MyWorkflow { public void create(final Product product) { .. }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
See this article and the idea how to use annotations:
https://dzone.com/articles/ultra-fast-microservices-part-2-when-microstream-m
...and instantiating the engine
The text was updated successfully, but these errors were encountered: