示例#1
0
 private static void HostSubscribeService()
 {
     System.Diagnostics.Debug.WriteLine("Bank Host Subscribe Service");
     mHost = new SubscriberServiceHost(typeof(SubscriberService), cAddress, cMexAddress, true, ".\\private$\\ToDeliveryQueue");
     Console.WriteLine("Delivery Services started. Press Q to quit.");
     while (Console.ReadKey().Key != ConsoleKey.Q)
     {
         ;
     }
 }
示例#2
0
 private static void HostSubscriberService()
 {
     mHost = new SubscriberServiceHost(typeof(SubscriberService), cAddress, cMexAddress, true, ".\\private$\\BankQueueTransacted");
 }
示例#3
0
 private static void HostSubscribeService()
 {
     //System.Diagnostics.Debug.WriteLine("Email Host Subscribe Service");
     mHost = new SubscriberServiceHost(typeof(SubscriberService), cAddress, cMexAddress, true, ".\\private$\\ToVideoStoreQueue");
     Console.WriteLine("Video Store Queue Hosted");
 }
示例#4
0
 private void HostSubscriberService()
 {
     mHost = new SubscriberServiceHost(typeof(SubscriberService), cAddress , cMexAddress, true, ".\\private$\\TickerQueueTransacted");
 }