Changeset 1007 for trunk/sources/HeuristicLab.Hive.Client.Communication/Service References/ServerService/Reference.cs
- Timestamp:
- 12/17/08 15:09:25 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Client.Communication/Service References/ServerService/Reference.cs
r993 r1007 44 44 45 45 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IClientCommunicator/SendJobResult", ReplyAction="http://tempuri.org/IClientCommunicator/SendJobResultResponse")] 46 HeuristicLab.Hive.Contracts.ResponseResultReceived SendJobResult(HeuristicLab.Hive.Contracts.BusinessObjects.JobResult Result, bool finished);46 HeuristicLab.Hive.Contracts.ResponseResultReceived SendJobResult(HeuristicLab.Hive.Contracts.BusinessObjects.JobResult result, bool finished); 47 47 48 48 [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="http://tempuri.org/IClientCommunicator/SendJobResult", ReplyAction="http://tempuri.org/IClientCommunicator/SendJobResultResponse")] 49 System.IAsyncResult BeginSendJobResult(HeuristicLab.Hive.Contracts.BusinessObjects.JobResult Result, bool finished, System.AsyncCallback callback, object asyncState);49 System.IAsyncResult BeginSendJobResult(HeuristicLab.Hive.Contracts.BusinessObjects.JobResult result, bool finished, System.AsyncCallback callback, object asyncState); 50 50 51 51 HeuristicLab.Hive.Contracts.ResponseResultReceived EndSendJobResult(System.IAsyncResult result); … … 375 375 } 376 376 377 public HeuristicLab.Hive.Contracts.ResponseResultReceived SendJobResult(HeuristicLab.Hive.Contracts.BusinessObjects.JobResult Result, bool finished) {378 return base.Channel.SendJobResult( Result, finished);379 } 380 381 [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] 382 public System.IAsyncResult BeginSendJobResult(HeuristicLab.Hive.Contracts.BusinessObjects.JobResult Result, bool finished, System.AsyncCallback callback, object asyncState) {383 return base.Channel.BeginSendJobResult( Result, finished, callback, asyncState);377 public HeuristicLab.Hive.Contracts.ResponseResultReceived SendJobResult(HeuristicLab.Hive.Contracts.BusinessObjects.JobResult result, bool finished) { 378 return base.Channel.SendJobResult(result, finished); 379 } 380 381 [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] 382 public System.IAsyncResult BeginSendJobResult(HeuristicLab.Hive.Contracts.BusinessObjects.JobResult result, bool finished, System.AsyncCallback callback, object asyncState) { 383 return base.Channel.BeginSendJobResult(result, finished, callback, asyncState); 384 384 } 385 385 … … 390 390 391 391 private System.IAsyncResult OnBeginSendJobResult(object[] inValues, System.AsyncCallback callback, object asyncState) { 392 HeuristicLab.Hive.Contracts.BusinessObjects.JobResult Result = ((HeuristicLab.Hive.Contracts.BusinessObjects.JobResult)(inValues[0]));392 HeuristicLab.Hive.Contracts.BusinessObjects.JobResult result = ((HeuristicLab.Hive.Contracts.BusinessObjects.JobResult)(inValues[0])); 393 393 bool finished = ((bool)(inValues[1])); 394 return this.BeginSendJobResult( Result, finished, callback, asyncState);394 return this.BeginSendJobResult(result, finished, callback, asyncState); 395 395 } 396 396 … … 408 408 } 409 409 410 public void SendJobResultAsync(HeuristicLab.Hive.Contracts.BusinessObjects.JobResult Result, bool finished) {411 this.SendJobResultAsync( Result, finished, null);412 } 413 414 public void SendJobResultAsync(HeuristicLab.Hive.Contracts.BusinessObjects.JobResult Result, bool finished, object userState) {410 public void SendJobResultAsync(HeuristicLab.Hive.Contracts.BusinessObjects.JobResult result, bool finished) { 411 this.SendJobResultAsync(result, finished, null); 412 } 413 414 public void SendJobResultAsync(HeuristicLab.Hive.Contracts.BusinessObjects.JobResult result, bool finished, object userState) { 415 415 if ((this.onBeginSendJobResultDelegate == null)) { 416 416 this.onBeginSendJobResultDelegate = new BeginOperationDelegate(this.OnBeginSendJobResult); … … 423 423 } 424 424 base.InvokeAsync(this.onBeginSendJobResultDelegate, new object[] { 425 Result,425 result, 426 426 finished}, this.onEndSendJobResultDelegate, this.onSendJobResultCompletedDelegate, userState); 427 427 }
Note: See TracChangeset
for help on using the changeset viewer.