Changeset 7634
- Timestamp:
- 03/19/12 14:18:15 (13 years ago)
- Location:
- branches/OKB (trunk integration)/HeuristicLab.Clients.OKB/3.3/RunCreation
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OKB (trunk integration)/HeuristicLab.Clients.OKB/3.3/RunCreation/OKBAlgorithm.cs
r7592 r7634 251 251 } 252 252 public void Start() { 253 if (!ClientInformation.Instance.ClientExists && storeRunsAutomatically) { 254 throw new Exception("To be able to store runs automatically, you need to register your client first."); 255 } 253 256 Algorithm.Start(); 254 257 } -
branches/OKB (trunk integration)/HeuristicLab.Clients.OKB/3.3/RunCreation/OKBRun.cs
r7604 r7634 126 126 this.stored = false; 127 127 this.UserId = userId; 128 this.ClientId = ClientInformation.Instance.ClientInfo.Id; 128 if (ClientInformation.Instance.ClientExists) { 129 this.ClientId = ClientInformation.Instance.ClientInfo.Id; 130 } else { 131 this.ClientId = Guid.Empty; 132 } 129 133 } 130 134 … … 135 139 public void Store() { 136 140 if (Stored) throw new InvalidOperationException("Cannot store already stored run."); 141 if (!ClientInformation.Instance.ClientExists) { 142 throw new Exception("To be able to store runs, you need to register your client first."); 143 } 144 145 //if user has now registered his client... 146 if (ClientId == Guid.Empty) { 147 ClientId = ClientInformation.Instance.ClientInfo.Id; 148 } 137 149 138 150 Run run = new Run();
Note: See TracChangeset
for help on using the changeset viewer.