Base solution for your next web application
Open Closed

Handling Events asynchronous #1054


User avatar
0
omar created

What would be the best place to put an event handler given the template structure downloaded from the site. Core Application Web WebApi

I would like to use the application services created in Project.Application to query information and email the user. How can i handle async actions inside my ExampleEventHandler?

Thanks


2 Answer(s)
  • User Avatar
    0
    hikalkan created
    Support Team

    If it's a domain event, you can use eventbus and put your handler in the core layer.

  • User Avatar
    0
    omar created

    Thank You!