17 lines
214 B
C#
17 lines
214 B
C#
using System.IO;
|
|
|
|
namespace ProtoBuf;
|
|
|
|
public interface IExtension
|
|
{
|
|
Stream BeginAppend();
|
|
|
|
void EndAppend(Stream stream, bool commit);
|
|
|
|
Stream BeginQuery();
|
|
|
|
void EndQuery(Stream stream);
|
|
|
|
int GetLength();
|
|
}
|