예제 #1
0
        /// <summary>
        /// 
        /// </summary>
        /// 
        public static void Start()
        {
            IEventSource source = new StandardEventSource("specialfinance.event.source");
            source.Start();

            IEventProcessor processor = new StandardEventProcessor("specialfinance.event.source");
            processor.Start();

            IEventNotifier notifier = new StandardEventNotifier("specialfinance.event.destination");
            notifier.Start();
        }
예제 #2
0
 private static void TestOne()
 {
     IEventSource source = new StandardEventSource("specialfinance.event.source");
     source.Start();
 }