Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/27/09 14:04:47 (16 years ago)
Author:
svonolfe
Message:

Refactored DAL (now using GUIDs as IDs instead of longs) (#527)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Client.Communication/WcfService.cs

    r1379 r1449  
    7474      try {
    7575        proxy = new ClientCommunicatorClient(
    76           new NetTcpBinding(),
     76          new NetTcpBinding(SecurityMode.None, true),
    7777          new EndpointAddress("net.tcp://" + ServerIP + ":" + ServerPort + "/HiveServer/ClientCommunicator")
    7878        );
     
    188188    #region SendJobResults
    189189    public event System.EventHandler<StoreFinishedJobResultCompletedEventArgs> StoreFinishedJobResultCompleted;
    190     public void StoreFinishedJobResultAsync(Guid clientId, long jobId, byte[] result, double percentage, Exception exception, bool finished) {
     190    public void StoreFinishedJobResultAsync(Guid clientId, Guid jobId, byte[] result, double percentage, Exception exception, bool finished) {
    191191      if (ConnState == NetworkEnum.WcfConnState.Loggedin)
    192192        proxy.StoreFinishedJobResultAsync(clientId, jobId, result, percentage, exception, finished);
     
    203203    #region Processsnapshots
    204204    public event System.EventHandler<ProcessSnapshotCompletedEventArgs> ProcessSnapshotCompleted;
    205     public void ProcessSnapshotAsync(Guid clientId, long jobId, byte[] result, double percentage, Exception exception, bool finished) {
     205    public void ProcessSnapshotAsync(Guid clientId, Guid jobId, byte[] result, double percentage, Exception exception, bool finished) {
    206206      if(ConnState == NetworkEnum.WcfConnState.Loggedin)
    207207        proxy.ProcessSnapshotAsync(clientId, jobId, result, percentage, exception);
     
    248248    #endregion  */
    249249
    250     public ResponseResultReceived SendStoredJobResultsSync(Guid clientId, long jobId, byte[] result, double percentage, Exception exception, bool finished) {
     250    public ResponseResultReceived SendStoredJobResultsSync(Guid clientId, Guid jobId, byte[] result, double percentage, Exception exception, bool finished) {
    251251      return proxy.StoreFinishedJobResult(clientId, jobId, result, percentage, exception);
    252252    }
Note: See TracChangeset for help on using the changeset viewer.