Tihomir Surdilovic
Tihomir Surdilovic
@JBBianchi thats fair too, you could then make the "path" param an array of objects types that have name and value pairs if you wanted as well and have for...
@cdavernas I think that if you delegate specific invocation info to functiondef you are losing reusability. What you could do is define something like "invocationTemplates" meaning in the function definition...
@cdavernas ok.from the example it looks as those are all "arguments" in the function def and that threw me off. I think separating that name as in arguments/parameters vs like...
@cdavernas should we move on this?
Great idea and def something that we need to come up with and try to enforce.
Any info on this issue? Associated forum link - https://community.temporal.io/t/how-to-delete-a-namespace/677
@Spikhalskiy most of these utility methods are documented here: https://github.com/tsurdilo/temporal-java-workshop/blob/main/src/main/java/io/workshop/c1s1/S1WFUtils.java so things like: getWorkflowStatus getActivitiesWithRetriesOver getLastHistoryEvent getFirstHistoryEvent printFailedWorkflowsWithReason resetWorkflow terminateWorkflow ... are things that i think we could create util...
another thing that would be really nice is to make it absolutely clear which "List" apis can be used with/without Elasticsearch enabled.
sorry one more :) in addition we should document apis to make it clear that those using enhanced visibility store are **eventually** consistent and may have delays compared to what...
Wanted to suggest one possible improvement. Currently with signalWithStart we can do for example: WorkflowStub untyped = WorkflowStub.fromTyped(typedStub); untyped.signalWithStart(...); ( or just create an untyped stub to start with )...