Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/23/10 10:50:26 (14 years ago)
Author:
kgrading
Message:

implemented the server on the client, using push & force push, added refresh buttons, added auto calender methods that traverse the tree... (#908)

File:
1 edited

Legend:

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

    r3011 r3203  
    395395      }
    396396    }
     397
     398    public ResponseCalendar GetCalendarSync(Guid clientId) {
     399      try {
     400        return proxy.GetCalendar(clientId);       
     401      }
     402      catch (Exception e) {
     403        HandleNetworkError(e);
     404        return null;
     405      }
     406    }
     407
     408    public Response SetCalendarStatus (Guid clientId, CalendarState state) {
     409      try {
     410        return proxy.SetCalendarStatus(clientId, state);       
     411      } catch (Exception e) {
     412        HandleNetworkError(e);
     413        return null;
     414      }
     415    }
     416
    397417  }
    398418}
Note: See TracChangeset for help on using the changeset viewer.