Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Communication.Data/IObjectStream.cs @ 584

Last change on this file since 584 was 584, checked in by abeham, 16 years ago

merged communication framework to trunk (ticket #279)

File size: 346 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4using HeuristicLab.Core;
5
6namespace HeuristicLab.Communication.Data {
7  public interface IObjectStream : IItem {
8    void Initialize(IDriverConfiguration configuration);
9    bool Connect();
10    void Close();
11
12    void Write(IItem item);
13    IItem Read();
14  }
15}
Note: See TracBrowser for help on using the repository browser.