# Hub Endpoints
The core of communication contracts between the client and server are hubs. Depending on your application and complexity you might have a few hubs as a separation of concern for your application. The backplanes work through 5 types of events per hub.
So this translated well into MassTransit Events:
All<THub>
- Invokes the method (with args) for each connection on the specified hubConnection<THub>
- Invokes the method (with args) for the specific connectionGroup<THub>
- Invokes the method (with args) for all connections belonging to the specified groupGroupManagement<THub>
- Adds or removes a connection to the group (on a remote server)User<THub>
- Invokes the method (with args) for all connections belonging to the specific user id
So each of these Messages has a corresponding consumer, and it will get a HubLifetimeManager<THub>
through DI to perform the specific task.
MassTransit's helper extension method will create an endpoint per consumer per hub, which follows the typical recommendation of one consumer per endpoint. Because of this, the number of endpoints can grow quickly if you have many hubs. It's best to also read some SignalR Limitations, to understand what can become potential bottlenecks with SignalR and your backplane. SignalR recommends re-thinking your strategy for very high throughput, real-time applications (video games).
← Quickstart Interop →