示例#1
0
 /// <summary>
 /// Called when the (deduplication) in-memory cache of destination system entities
 /// has been populated.
 /// </summary>
 /// <param name="args">The event data.</param>
 public override void OnCachePopulated(ICachePopulatedArgs args)
 {
     this.PrintVariableCountOutcome(
         args.Count,
         Resources.DestinationSystemEntityCached,
         Resources.DestinationSystemEntitiesCachedFormat);
 }
示例#2
0
 /// <summary>
 /// Called when the (deduplication) in-memory cache of destination system entities
 /// has been populated.
 /// </summary>
 /// <param name="args">The event data.</param>
 public virtual void OnCachePopulated(ICachePopulatedArgs args)
 {
 }
示例#3
0
 /// <summary>
 /// Called when the (deduplication) in-memory cache of destination system entities
 /// has been populated.
 /// </summary>
 /// <param name="args">The event data.</param>
 void IEventReceiver <ICachePopulatedArgs> .Occurred(ICachePopulatedArgs args)
 {
     this.OnCachePopulated(args);
 }
示例#4
0
 /// <summary>
 /// To be called when the (deduplication) in-memory cache of destination system
 /// entities has been populated.
 /// </summary>
 /// <param name="args">The event data.</param>
 public void CachePopulated(ICachePopulatedArgs args)
 {
     this.Dispatch(args);
 }