Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/02/09 14:14:47 (15 years ago)
Author:
gkronber
Message:
  • Refactoring: renamed method LoadPlugins to LoadAssemblies in class Runner.
  • Added cache of loaded assemblies in the Runner.
  • Added an AssemblyResolveEvent that returns already loaded assemblies from the cache.

#658 (For the execution of jobs assemblies have to be loaded dynamically in the correct order)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Client.Core/3.2/Core.cs

    r1959 r1990  
    244244          files.AddRange(plugininfo.PluginFiles);
    245245       
    246         AppDomain appDomain = PluginManager.Manager.CreateAndInitAppDomainWithSandbox(e.Result.Job.Id.ToString(), sandboxed, null, files);       
     246        AppDomain appDomain = PluginManager.Manager.CreateAndInitAppDomainWithSandbox(e.Result.Job.Id.ToString(), sandboxed, null, files);
    247247        appDomain.UnhandledException += new UnhandledExceptionEventHandler(appDomain_UnhandledException);
    248248        lock (engines) {                   
     
    265265      currentlyFetching = false;
    266266    }
    267    
    268267
    269268    void wcfService_StoreFinishedJobResultCompleted(object sender, StoreFinishedJobResultCompletedEventArgs e) {
Note: See TracChangeset for help on using the changeset viewer.