Replies: 1 comment
-
I think you need to set it manually. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
Is there a built in way of passing a metadata like CorrelationId (or Timestamp or anything additional) with the distributed events?
It is essential for creating an integration patterns like a process managers.
One solution I can think of is to create my own class
public class EtoEnvelope<T> { public T Event { get; set; } public Guid CorrelationId { get; set; } }
to wrap up all the additional stuff I need.
I wonder if creating such class is a good idea or there is something built in that I should use instead?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions