AcTools.LapTimes.LevelDbUtils.LevelDbInterop.leveldb_write C# (CSharp) Méthode

leveldb_write() private méthode

private leveldb_write ( IntPtr db, IntPtr options, IntPtr batch, IntPtr &errptr ) : void
db System.IntPtr
options System.IntPtr
batch System.IntPtr
errptr System.IntPtr
Résultat void
        public static extern void leveldb_write(IntPtr /* DB */ db, IntPtr /* WriteOptions*/ options, IntPtr /* WriteBatch */ batch, out IntPtr errptr);

Usage Example

Exemple #1
0
        public void Write(WriteBatch batch, WriteOptions options)
        {
            IntPtr error;

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