C# Class NServiceBus.Routing.UnicastRoutingTable

The unicast routing table.
Show file Open project: Particular/NServiceBus Class Usage Examples

Public Methods

Method Description
AddOrReplaceRoutes ( string sourceKey, IList entries ) : void

Adds or replaces a set of routes for a given group key. The route set is identified . If the method is called the first time with a given , the routes are added. If the method is called with the same multiple times, the routes registered previously under this key are replaced.

Private Methods

Method Description
GetRouteFor ( Type messageType ) : UnicastRoute

Method Details

AddOrReplaceRoutes() public method

Adds or replaces a set of routes for a given group key. The route set is identified . If the method is called the first time with a given , the routes are added. If the method is called with the same multiple times, the routes registered previously under this key are replaced.
public AddOrReplaceRoutes ( string sourceKey, IList entries ) : void
sourceKey string Key for the route source.
entries IList Group entries.
return void