leveldb_write() private method

private leveldb_write ( IntPtr db, IntPtr options, IntPtr batch, IntPtr &errptr ) : void
db System.IntPtr
options System.IntPtr
batch System.IntPtr
errptr System.IntPtr
return void
Exemplo n.º 1
0
        public void Write(WriteBatch batch, WriteOptions options)
        {
            IntPtr error;

            LevelDbInterop.leveldb_write(Handle, options.Handle, batch.Handle, out error);
            Throw(error);
        }