Communicating with Event Bus
Learn how to split all the routes into a separate file and organize the application using communication with Event Bus.
We'll cover the following...
Event Bus and Message Passing
Event Bus is an implementation of the Observable design pattern.
We’ve already mentioned that Vert.x is based on the concept of verticles, which are isolated actors. Kotlin’s coroutines
library provides the actor()
and producer()
coroutine generators, which create a coroutine bound to a channel.
Similarly, all the verticles in the Vert.x framework are bound ...