コード例 #1
0
ファイル: SubscriberCache.cs プロジェクト: ewin66/Pigeon
 /// <summary>
 /// Terminates a subscription to the topic message stream
 /// </summary>
 /// <typeparam name="TTopic">The type of the published topic message</typeparam>
 public void Unsubscribe<TTopic>()
 {
     var subscriber = SubscriberFor<TTopic>();
     subscriptions.Remove<TTopic>(subscriber);
 }