You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You have some data/context and needs to perform series of operations on it.
Where operations are independent.
If you are ok on dealing with a state. Here in this case the context.
If you are struck with .Net 4.0. On 4.5 there is Banzai [nuget library]>...
But in the second example, you explain how to interact with a context.
So I deduce that your first operation "FindSumOperation" need to be terminate before the second operation "FindAverageOperation" can begin ?
So in this case it's not independant ?
The text was updated successfully, but these errors were encountered:
Thanks, @dust63 for the suggestion. I mean independent operations as the steps can be rearranged in any (order). Mainly because there is no typed return type that can be connected to other steps that expect the same type as its input.
The context is a simple mechanism to share state not to have a dependency.
But in real use, there may be scenarios where one step may set something in context object and the next step may be expecting that value.
Hope this explains
Hello just a remark about your readme, you say:
But in the second example, you explain how to interact with a context.
So I deduce that your first operation "FindSumOperation" need to be terminate before the second operation "FindAverageOperation" can begin ?
So in this case it's not independant ?
The text was updated successfully, but these errors were encountered: