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
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Added
CommandContext now holds a Response property for those commands returning a response. This can for instance be leveraged by command value response handlers.
Making the command pipeline much more flexible by allowing tuples with more than 2 values. If one of the values does not have a value handler, it will become the response as part of the CommandResult. (#1241)
Making it possible for all command handlers to return a response both if you have a OneOf scenario or not. If there is no value handler for the value returned, this will then become the response as part of the CommandResult.