DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
IInputStream.cs
Go to the documentation of this file.
1 using System;
2 
3 using Deveel.Data.Util;
4 
5 namespace Deveel.Data.Protocol {
10  public interface IInputStream {
14  int Available { get; }
15 
16  int Read(byte[] bytes, int offset, int length);
17  }
18 }
Represents a stream that supports required functionalities for a LengthMarkedBufferedInputStream ...
Definition: IInputStream.cs:10