0
denis.karovic created
Hi,
I have several questions regarding Events. I have read documentation regarding it on https://aspnetboilerplate.com/Pages/Documents/EventBus-Domain-Events. However, I have several questions:
Are events stored somewhere (database, redis…)?
Can we choose where events will be stored?
Is handling them triggered based or loop/timer based? (I believe it's a pub/sub trigger based implementation, but I just need to check with you one more time)
Any supprot for Integration Events?
2 Answer(s)
-
0
Hi @denis.karovic,
- No.
- Since it is not stored, No.
- No, see https://github.com/aspnetboilerplate/aspnetboilerplate/blob/dev/src/Abp/Events/Bus/EventBus.cs#L305
- Unfortunately no. You need to use another librayr for that.
Thanks,
-
0
Ok, thanks.