Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/19/10 09:17:24 (14 years ago)
Author:
kgrading
Message:

added minor speedups and better transaction handling to the server (#828)

File:
1 edited

Legend:

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

    r3578 r3931  
    259259          lock (engines) {
    260260            appDomains[jId].UnhandledException -= new UnhandledExceptionEventHandler(appDomain_UnhandledException);
     261           
     262            //Disposing it
     263            engines[jId].Dispose();
     264           
    261265            AppDomain.Unload(appDomains[jId]);
    262266            Logger.Debug("Unloaded appdomain");
     
    478482      lock (engines) {
    479483        try {
     484          engines[id].Dispose(); 
    480485          appDomains[id].UnhandledException -= new UnhandledExceptionEventHandler(appDomain_UnhandledException);
    481486          AppDomain.Unload(appDomains[id]);
Note: See TracChangeset for help on using the changeset viewer.