GWT Event Bus concept in other frameworks

I do not know many frameworks on the market, but I wanted to know something. Like the concept of an event bus in GWT, does this method exist in a different framework?

+3
source share
3 answers

Many user interface interfaces use the EventBus model. Events are just asynchronous messages. User interface interfaces usually use these asynchronous mechanisms for notifications because they do not want to block user interaction with the system while they are processing the last change they made to the user interface. Sometimes people write these buses themselves using the Observer template, and sometimes they are provided by frameworks.

. , , (, JMS-), - , , EventBus.

+2

EventBus - API, , , .

+1

I think that Event Bus should separate the sender and receiver, you can take a look at the receiver pattern in the design pattern.

+1
source

Source: https://habr.com/ru/post/1785307/


All Articles