ActivityName as expression. It solves #542 issue. (Activity Compound Key) #838
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Describe the change
The event type of
Activity
only requires a name which is equal toeventKey
ofWaitFor
. Currently, the name is just a value. In that case, when an activity enqueued the first activity will be processed (GetFirstOpenSubscription
).The PR includes an overload method for
Activity
. Allows the developer the customize theireventKey
for activities. In theSample20
, I changed the activityName to a compound key. (e.g.get-approval
toget-approval-{workflowId}
)The issue #542 will be fixed with this PR.
Describe your implementation or design
How did you go about implementing the change?
Only added an overload method for
Activity
withExpression<Func<TData, IStepExecutionContext, string>> activityName
.Tests
Did you cover your changes with tests?
Yes
Breaking change
Do you changes break compatibility with previous versions?
No
Additional context
Any additional information you'd like to provide?
No