- Timestamp:
- 03/03/17 11:41:43 (8 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Clients.Hive/3.3
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Clients.Hive/3.3/HiveTasks/HiveTask.cs
r13386 r14711 35 35 36 36 [Item("Hive Task", "Represents a hive task.")] 37 [Storable Class("967DC1A1-7B0C-4D8B-AF9F-710B1FD676DF")]37 [StorableType("967DC1A1-7B0C-4D8B-AF9F-710B1FD676DF")] 38 38 public class HiveTask : NamedItem, IItemTree<HiveTask>, IDisposable { 39 39 protected static object locker = new object(); … … 541 541 542 542 [Item("Hive Task", "Represents a hive task.")] 543 [Storable Class("04AD6AF8-8248-48FB-AF3A-403A2D22F725")]543 [StorableType("04AD6AF8-8248-48FB-AF3A-403A2D22F725")] 544 544 public class HiveTask<T> : HiveTask where T : ItemTask { 545 545 -
branches/PersistenceOverhaul/HeuristicLab.Clients.Hive/3.3/Settings.settings
r9666 r14711 3 3 <Profiles /> 4 4 <Settings> 5 <Setting Name="MaxParallelUploads" Type="System.Int32" Scope="Application">5 <Setting Name="MaxParallelUploads" MemberSelection="System.Int32" Scope="Application"> 6 6 <Value Profile="(Default)">2</Value> 7 7 </Setting> 8 <Setting Name="HLBinaryName" Type="System.String" Scope="Application">8 <Setting Name="HLBinaryName" MemberSelection="System.String" Scope="Application"> 9 9 <Value Profile="(Default)">HeuristicLab 3.3.exe</Value> 10 10 </Setting> 11 <Setting Name="ResultPollingInterval" Type="System.TimeSpan" Scope="Application">11 <Setting Name="ResultPollingInterval" MemberSelection="System.TimeSpan" Scope="Application"> 12 12 <Value Profile="(Default)">00:00:20</Value> 13 13 </Setting> 14 <Setting Name="MaxParallelDownloads" Type="System.Int32" Scope="Application">14 <Setting Name="MaxParallelDownloads" MemberSelection="System.Int32" Scope="Application"> 15 15 <Value Profile="(Default)">2</Value> 16 16 </Setting> 17 <Setting Name="MaxRepeatServiceCalls" Type="System.Int32" Scope="Application">17 <Setting Name="MaxRepeatServiceCalls" MemberSelection="System.Int32" Scope="Application"> 18 18 <Value Profile="(Default)">5</Value> 19 19 </Setting> 20 <Setting Name="AnonymousUserName" Type="System.String" Scope="Application">20 <Setting Name="AnonymousUserName" MemberSelection="System.String" Scope="Application"> 21 21 <Value Profile="(Default)">anonymous</Value> 22 22 </Setting> 23 <Setting Name="EndpointConfigurationPriorities" Type="System.Collections.Specialized.StringCollection" Scope="Application">23 <Setting Name="EndpointConfigurationPriorities" MemberSelection="System.Collections.Specialized.StringCollection" Scope="Application"> 24 24 <Value Profile="(Default)"><?xml version="1.0" encoding="utf-16"?> 25 25 <ArrayOfString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> … … 28 28 </ArrayOfString></Value> 29 29 </Setting> 30 <Setting Name="MaxEndpointRetries" Type="System.Int32" Scope="Application">30 <Setting Name="MaxEndpointRetries" MemberSelection="System.Int32" Scope="Application"> 31 31 <Value Profile="(Default)">3</Value> 32 32 </Setting> -
branches/PersistenceOverhaul/HeuristicLab.Clients.Hive/3.3/StateLogList.cs
r13368 r14711 26 26 27 27 namespace HeuristicLab.Clients.Hive { 28 [Storable Class("ED082FB8-76ED-4A77-97B6-ACB7D566435F")]28 [StorableType("ED082FB8-76ED-4A77-97B6-ACB7D566435F")] 29 29 public class StateLogList : ItemList<StateLog> { 30 30 -
branches/PersistenceOverhaul/HeuristicLab.Clients.Hive/3.3/StateLogListList.cs
r13368 r14711 26 26 27 27 namespace HeuristicLab.Clients.Hive { 28 [Storable Class("2EFC5B92-9976-42CE-812E-8155183D182A")]28 [StorableType("2EFC5B92-9976-42CE-812E-8155183D182A")] 29 29 public class StateLogListList : ItemList<StateLogList> { 30 30 -
branches/PersistenceOverhaul/HeuristicLab.Clients.Hive/3.3/Tasks/EngineTask.cs
r13368 r14711 27 27 28 28 namespace HeuristicLab.Clients.Hive { 29 [Storable Class("EBCB0A8C-B00C-43DD-A38E-E4E12168ABA2")]29 [StorableType("EBCB0A8C-B00C-43DD-A38E-E4E12168ABA2")] 30 30 public class EngineTask : ItemTask { 31 31 public override HiveTask CreateHiveTask() { -
branches/PersistenceOverhaul/HeuristicLab.Clients.Hive/3.3/Tasks/ItemTask.cs
r13368 r14711 31 31 namespace HeuristicLab.Clients.Hive { 32 32 [Item("Item Task", "Represents a executable hive task which contains a HeuristicLab Item.")] 33 [Storable Class("1E1F34FE-F580-4968-8C3F-918A22FDC8DC")]33 [StorableType("1E1F34FE-F580-4968-8C3F-918A22FDC8DC")] 34 34 public abstract class ItemTask : NamedItem, ITask { 35 35 public virtual HiveTask CreateHiveTask() { -
branches/PersistenceOverhaul/HeuristicLab.Clients.Hive/3.3/Tasks/OptimizerTask.cs
r13368 r14711 28 28 namespace HeuristicLab.Clients.Hive.Jobs { 29 29 [Item("Optimizer Task", "Represents Task which executes a IOptimizer object.")] 30 [Storable Class("52EFD5D9-936F-42C0-8ACE-548AC06A0855")]30 [StorableType("52EFD5D9-936F-42C0-8ACE-548AC06A0855")] 31 31 public class OptimizerTask : ItemTask { 32 32 public override HiveTask CreateHiveTask() { -
branches/PersistenceOverhaul/HeuristicLab.Clients.Hive/3.3/app.config
r11623 r14711 2 2 <configuration> 3 3 <configSections> 4 <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">5 <section name="HeuristicLab.Clients.Hive.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>4 <sectionGroup name="applicationSettings" memberSelection="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 5 <section name="HeuristicLab.Clients.Hive.Settings" memberSelection="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/> 6 6 </sectionGroup> 7 7 </configSections> … … 53 53 <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false"/> 54 54 <security mode="Message"> 55 <transport clientCredential Type="Windows" proxyCredentialType="None" realm=""/>56 <message clientCredential Type="UserName" negotiateServiceCredential="true" algorithmSuite="Default"/>55 <transport clientCredentialMemberSelection="Windows" proxyCredentialMemberSelection="None" realm=""/> 56 <message clientCredentialMemberSelection="UserName" negotiateServiceCredential="true" algorithmSuite="Default"/> 57 57 </security> 58 58 </binding> … … 63 63 <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false"/> 64 64 <security mode="TransportWithMessageCredential"> 65 <transport clientCredential Type="Windows"/>66 <message clientCredential Type="UserName" algorithmSuite="Default"/>65 <transport clientCredentialMemberSelection="Windows"/> 66 <message clientCredentialMemberSelection="UserName" algorithmSuite="Default"/> 67 67 </security> 68 68 </binding>
Note: See TracChangeset
for help on using the changeset viewer.