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.Server.Core/3.2/ClientFacade.cs

    r3011 r3203  
    5454    }
    5555
     56
    5657    public ResponseJob SendJob(Guid clientId) {
    5758      return clientCommunicator.SendJob(clientId);
     
    8687    }
    8788
     89
     90    public ResponseCalendar GetCalendar(Guid clientId) {
     91      return clientCommunicator.GetCalendar(clientId);
     92    }
     93
     94    public Response SetCalendarStatus(Guid clientId, CalendarState state) {
     95      return clientCommunicator.SetCalendarStatus(clientId, state);     
     96    }
    8897    #endregion
    8998
     
    136145    }
    137146
     147
     148
    138149    #endregion
    139150  }
Note: See TracChangeset for help on using the changeset viewer.