/// <summary>
 /// Maps the specified topic to the specified address
 /// </summary>
 public TopicBasedRouterConfigurationBuilder Map(string topic, string ownerAddress)
 {
     _router.Map(topic, ownerAddress);
     return(this);
 }