AOP之PostSharp6-EventInterceptionAspect(事件异步调用)

        在上几章我们讨论了方法属性字段的aspect,现在我们再来看看事件机制的aspect。和字段,属性location一样,在c#中字段也可以转化为方法名为add,remove的方法处理,所以对于事件的aspect,同样类似于我们的方法。我们先看看EventInterceptionAspect的定义:

aspect类包含我们对于事件aspect所必要的注册,取消,调用的注入。

其参数定义如下:

为我们提供了,ProceedAddHandler,ProceedInvokeHandler,ProceedRemoveHandler的事件处理代理。同样包含来自AdviceArgs的Instance对象。

对于事件aspect的例子真的不好想,在这里我们只是简单的做个事件变为异步调用的代码作为demo:

  
  
  
  
  1. [Serializable]  
  2.     public class AsynEventAspectAttribute : PostSharp.Aspects.EventInterceptionAspect  
  3.     {  
  4.  
  5.         public override void OnInvokeHandler(PostSharp.Aspects.EventInterceptionArgs args)  
  6.         {  
  7.             var th = new System.Threading.Thread(new System.Threading.ParameterizedThreadStart(new Action<object>((obj) =>  
  8.                 {  
  9.                     System.Threading.Thread.Sleep(new Random().Next(1000));  
  10.                     try  
  11.                     {  
  12.                         args.ProceedInvokeHandler();  
  13.                     }  
  14.                     catch (Exception ex)  
  15.                     {  
  16.  
  17.                         args.ProceedRemoveHandler();  
  18.                     }  
  19.                 })));  
  20.             th.Start();  
  21.         }  
  22.     } 

测试代码:

  
  
  
  
  1. namespace PostSharpDemo   
  2. {   
  3.     public class TestAsyncAspect   
  4.     {   
  5.         [AsynEventAspectAttribute]   
  6.         public event EventHandler SomeEvent = null;   
  7.  
  8.         public void OnSomeEvent()   
  9.         {   
  10.             if (SomeEvent != null)   
  11.             {   
  12.  
  13.                 SomeEvent(this, EventArgs.Empty);   
  14.             }   
  15.         }   
  16.     }   
  17. }  
  18. class Program   
  19.     {   
  20.         static void Main(string[] args)   
  21.         {  
  22.  
  23. TestAsyncAspect pro = new TestAsyncAspect();   
  24.           for (int i = 0; i < 10; i++)   
  25.           {   
  26.               pro.SomeEvent += new EventHandler(pro_SomeEvent);   
  27.           }   
  28.           pro.OnSomeEvent();   
  29.     //      pro.SomeEvent -= new EventHandler(pro_SomeEvent);   
  30.           Console.WriteLine("主线程完了!");   
  31.           Console.Read();   
  32.       }   
  33.  
  34.       static void pro_SomeEvent(object sender, EventArgs e)   
  35.       {   
  36.           Console.WriteLine(System.Threading.Thread.CurrentThread.ManagedThreadId);   
  37.       }      
  38.  
  39. }   

 效果图如下:

附件下载:demo

  • AOP之PostSharp初见-OnExceptionAspect
  • AOP之PostSharp2-OnMethodBoundaryAspect
  • AOP之PostSharp3-MethodInterceptionAspect
  • AOP之PostSharp4-实现类INotifyPropertyChanged植入
  • AOP之PostSharp5-LocationInterceptionAspect
  • AOP之PostSharp6-EventInterceptionAspect
  • http://www.cnblogs.com/whitewolf/category/312638.html

你可能感兴趣的:(AOP之PostSharp6-EventInterceptionAspect(事件异步调用))