Beispiel #1
0
 /// <summary>
 /// Called when source/destination system identifier mappings are about to be
 /// loaded from the database into the in-memory cache.
 /// </summary>
 /// <param name="args">The event data.</param>
 void IEventReceiver <IMappingsCachingArgs> .Occurred(IMappingsCachingArgs args)
 {
     this.OnMappingsCaching(args);
 }
Beispiel #2
0
 /// <summary>
 /// Called when source/destination system identifier mappings are about to be
 /// loaded from the database into the in-memory cache.
 /// </summary>
 /// <param name="args">The event data.</param>
 public override void OnMappingsCaching(IMappingsCachingArgs args)
 {
     Console.Write(Resources.LoadingEntityIdentifierMappings);
 }
Beispiel #3
0
 /// <summary>
 /// Called when source/destination system identifier mappings are about to be
 /// loaded from the database into the in-memory cache.
 /// </summary>
 /// <param name="args">The event data.</param>
 public virtual void OnMappingsCaching(IMappingsCachingArgs args)
 {
 }
Beispiel #4
0
 /// <summary>
 /// To be called when source/destination system identifier mappings are about to be
 /// loaded from the database into the in-memory cache.
 /// </summary>
 /// <param name="args">The event data.</param>
 public void MappingsCaching(IMappingsCachingArgs args)
 {
     this.Dispatch(args);
 }