Changeset 4107 for branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/Facades
- Timestamp:
- 07/26/10 18:17:16 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/Facades/ClientFacade.cs
r4092 r4107 86 86 87 87 public ResponsePlugin SendPlugins(List<HivePluginInfoDto> pluginList) { 88 using (contextFactory.GetContext()) { 89 return clientCommunicator.SendPlugins(pluginList); 90 } 88 return clientCommunicator.SendPlugins(pluginList); 91 89 } 92 90 … … 122 120 ResponseJob job = null; 123 121 124 job = this.SendJob(clientId);122 job = ServiceLocator.GetClientCommunicator().SendJob(clientId); 125 123 126 124 //first send response … … 147 145 148 146 public Stream SendStreamedPlugins(List<HivePluginInfoDto> pluginList) { 149 using (contextFactory.GetContext()) { 150 return new StreamedObject<ResponsePlugin>(this.SendPlugins(pluginList)); 151 } 147 return new StreamedObject<ResponsePlugin>(this.SendPlugins(pluginList)); 152 148 } 153 149
Note: See TracChangeset
for help on using the changeset viewer.