6 Beyond the event bus

 

This chapter covers

  • How to expose services on top of the event bus
  • Asynchronous testing of both verticles and event-bus services

The event bus is a fundamental tool for articulating event processing in Vert.x, but there is more to it! Event-bus services are useful for exposing typed interfaces rather than plain messaging, especially when multiple message types are expected at an event-bus destination. Testing is also an important concept, and we’ll look at what is different in testing asynchronous Vert.x code compared to traditional testing.

In this chapter we will revisit an earlier example, refactor it into an event-bus service, and test it.

6.1 Revisiting heat sensors with a service API

In chapter 3 we used heat sensors as an example. We had a SensorData verticle that kept the last observed values for each sensor and compute their average using request/reply communication on the event bus. The following listing shows the code we used to compute the temperature average.

Listing 6.1 Event-bus-based average computation API

private void average(Message<JsonObject> message) {        #1
  double avg = lastValues.values().stream()
    .collect(Collectors.averagingDouble(Double::doubleValue));
  JsonObject json = new JsonObject().put("average", avg);
  message.reply(json);                                     #2
}

We receive an event from the event bus.

We reply to the event.

6.2 Return of the RPCs (remote procedure calls)

 
 
 

6.3 Defining a service interface

 

6.4 Service implementation

 
 
 

6.5 Enabling proxy code generation

 
 
 
 

6.6 Deploying event-bus services

 
 
 

6.7 Service proxies beyond callbacks

 
 

6.8 Testing and Vert.x

 
 

6.8.1 Using JUnit 5 with Vert.x

 
 
 
 

6.8.2 Testing DataVerticle

 
 

6.8.3 Running the tests

 

Summary

 
 
 
sitemap

Unable to load book!

The book could not be loaded.

(try again in a couple of minutes)

manning.com homepage