I am using the Quarkus Temporal extension (quarkus-temporal) and would like to configure activity options in a centralized way for my application.
My plan is to define the activity options in a config file. Then I want to apply these options globally using WorkflowImplementationOptions
, so that I don’t have to set the options individually on each activity.
I’m looking for guidance on the best way to achieve this with quarkus-temporal. Specifically:
- What is the recommended approach to load activity options from a config file with Quarkus?
- How do I then use
WorkflowImplementationOptions
to set these loaded options as the global defaults? - Are there any special considerations or limitations I should be aware of with this setup?
Any tips, code snippets, or links to relevant documentation would be much appreciated. Thanks in advance for your help!