Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/12/10 10:57:21 (14 years ago)
Author:
kgrading
Message:

changed the complete DAL to LINQ 2 SQL (with the exception of the job streaming), did a lot of refactoring, Introduced DTOs (that are named DTOs for better understanding), added the spring.NET Interceptor, reintroduced transactions and cleaned up the whole JobResult thing and updated a part of the config merger (#830)

File:
1 edited

Legend:

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

    r2122 r3011  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    151151    #region Login
    152152    public event System.EventHandler<LoginCompletedEventArgs> LoginCompleted;
    153     public void LoginAsync(ClientInfo clientInfo) {
     153    public void LoginAsync(ClientDto clientInfo) {
    154154      if (ConnState == NetworkEnum.WcfConnState.Connected)
    155155        proxy.LoginAsync(clientInfo);
     
    162162    }
    163163
    164     public void LoginSync(ClientInfo clientInfo) {
     164    public void LoginSync(ClientDto clientInfo) {
    165165      try {
    166166        if (ConnState == NetworkEnum.WcfConnState.Connected) {
     
    372372    }
    373373
    374     public List<CachedHivePluginInfo> RequestPlugins(List<HivePluginInfo> requestedPlugins) {
     374    public List<CachedHivePluginInfoDto> RequestPlugins(List<HivePluginInfoDto> requestedPlugins) {
    375375      try {
    376376        Stream stream = proxy.SendStreamedPlugins(requestedPlugins.ToArray());
Note: See TracChangeset for help on using the changeset viewer.