Exemplo n.º 1
0
 /// <summary>
 /// Called when source/destination system identifier mappings have been loaded from
 /// the database into the in-memory cache.
 /// </summary>
 /// <param name="args">The event data.</param>
 public override void OnMappingsCached(IMappingsCachedArgs args)
 {
     this.PrintVariableCountOutcome(
         args.Count,
         Resources.EntityIdentifierMappingLoaded,
         Resources.EntityIdentifierMappingsLoadedFormat);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Called when source/destination system identifier mappings have been loaded from
 /// the database into the in-memory cache.
 /// </summary>
 /// <param name="args">The event data.</param>
 void IEventReceiver <IMappingsCachedArgs> .Occurred(IMappingsCachedArgs args)
 {
     this.OnMappingsCached(args);
 }
Exemplo n.º 3
0
 /// <summary>
 /// Called when source/destination system identifier mappings have been loaded from
 /// the database into the in-memory cache.
 /// </summary>
 /// <param name="args">The event data.</param>
 public virtual void OnMappingsCached(IMappingsCachedArgs args)
 {
 }
Exemplo n.º 4
0
 /// <summary>
 /// To be called when source/destination system identifier mappings have been
 /// loaded from the database into the in-memory cache.
 /// </summary>
 /// <param name="args">The event data.</param>
 public void MappingsCached(IMappingsCachedArgs args)
 {
     this.Dispatch(args);
 }