You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Send heartbeat when it's possible in order to not exceed the sessionTimeout
358
+
awaitheartbeat();
359
+
360
+
// Do some slow processing again:
361
+
awaitdoWorkPart2();
362
362
}
363
363
```
364
364
365
365
366
-
367
366
#### Naming conventions
368
367
369
368
The Kafka microservice components append a description of their respective role onto the `client.clientId` and `consumer.groupId` options to prevent collisions between Nest microservice client and server components. By default the `ClientKafka` components append `-client` and the `ServerKafka` components append `-server` to both of these options. Note how the provided values below are transformed in that way (as shown in the comments).
0 commit comments