Futures/Monads vs Events
- by c69
So, the question is quite simple:
in an application framework,
when performance impact can be ignored (10-20 events per second at max),
what is more maintainable and flexible to use as a preferred medium for communication between modules - Events or Futures/Promices/Monads ?
Its often being said, that Events (pub/sub, mediator) allow…