Exemple #1
0
 public void MakeAwareOf(IVhptHeartbeatAware instance)
 {
     lock (this.locker)
     {
         this.decorated.Add(new AwareDecorator(instance));
     }
 }
 public void MakeAwareOf(IVhptHeartbeatAware instance)
 {
     lock (this.locker)
     {
         this.decorated.Add(new AwareDecorator(instance));
     }
 }
Exemple #3
0
 public AwareDecorator(IVhptHeartbeatAware decorated)
 {
     this.target = new WeakReference(decorated);
 }
 public AwareDecorator(IVhptHeartbeatAware decorated)
 {
     this.target = new WeakReference(decorated);
 }