Skip to content
Discussion options

You must be logged in to vote

Unfortunately, today there is no way to do it via Subscription, you can do a workaround, by having a message X and publishing it to the internal bus

Like

EmailReceived-> [published_topic] -> [subscriber_1] -> RequestHandlerAsync<EmailReceived>  |-> RequestHandlerAsync<EmailReceivedModel>
                                                                                           |-> RequestHandlerAsync<EmailReceivedModel>
                                                                                           |-> RequestHandlerAsync<EmailReceivedModel>

The message

public class EmailReceived() : Event(Id.Random())
{
    public string To { get; set; } = string.Empty;
    public string From { 

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@CharlieDigital
Comment options

Answer selected by CharlieDigital
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants