initial commit
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using System.IO;
|
||||
|
||||
namespace ProtoBuf;
|
||||
|
||||
public interface IExtension
|
||||
{
|
||||
Stream BeginAppend();
|
||||
|
||||
void EndAppend(Stream stream, bool commit);
|
||||
|
||||
Stream BeginQuery();
|
||||
|
||||
void EndQuery(Stream stream);
|
||||
|
||||
int GetLength();
|
||||
}
|
||||
Reference in New Issue
Block a user