Changeset 7185 for trunk/sources
- Timestamp:
- 12/13/11 17:01:09 (13 years ago)
- Location:
- trunk/sources
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Clients.Hive.Slave.Views/3.3/SlaveItem.cs
r7135 r7185 42 42 } 43 43 44 [CallbackBehavior(ConcurrencyMode = ConcurrencyMode.Reentrant )]44 [CallbackBehavior(ConcurrencyMode = ConcurrencyMode.Reentrant, UseSynchronizationContext = false)] 45 45 [Item("SlaveItem", "Represents a slave which receives messages from the core")] 46 46 public class SlaveItem : Item, ISlaveCommunicationCallbacks, IDisposable { -
trunk/sources/HeuristicLab.Clients.Hive.Slave/3.3/DummyListener.cs
r6983 r7185 26 26 namespace HeuristicLab.Clients.Hive.SlaveCore { 27 27 28 [CallbackBehavior(ConcurrencyMode = ConcurrencyMode.Reentrant )]28 [CallbackBehavior(ConcurrencyMode = ConcurrencyMode.Reentrant, UseSynchronizationContext = false)] 29 29 internal class DummyListener : ISlaveCommunicationCallbacks { 30 30 -
trunk/sources/HeuristicLab.Clients.Hive.Slave/3.3/SlaveCommunicationService.cs
r6983 r7185 26 26 27 27 namespace HeuristicLab.Clients.Hive.SlaveCore { 28 [ServiceBehavior(UseSynchronizationContext = false)] 28 29 public class SlaveCommunicationService : ISlaveCommunication { 29 30 private static List<ISlaveCommunicationCallbacks> subscribers = new List<ISlaveCommunicationCallbacks>(); -
trunk/sources/HeuristicLab.Services.Hive.DataAccess/3.3/SQL Scripts/Prepare Hive Database.sql
r6983 r7185 232 232 GO 233 233 234 235 ALTER TRIGGER [dbo].[tr_StatisticsDeleteCascade] ON [dbo].[Statistics] INSTEAD OF DELETE AS 236 BEGIN 237 DELETE SlaveStatistics FROM deleted, SlaveStatistics WHERE deleted.StatisticsId = SlaveStatistics.StatisticsId 238 -- should also remove UserStatistics here 239 DELETE [Statistics] FROM deleted, [Statistics] WHERE deleted.StatisticsId = [Statistics].StatisticsId 240 END 241 GO 242 243 234 244 -- ============================================================ 235 245 -- Description: Create indices to speed up execution of queries
Note: See TracChangeset
for help on using the changeset viewer.