AcTools.LapTimes.LevelDbUtils.LevelDbInterop.leveldb_create_snapshot C# (CSharp) Метод

leveldb_create_snapshot() приватный Метод

private leveldb_create_snapshot ( IntPtr db ) : IntPtr
db System.IntPtr
Результат System.IntPtr
        public static extern IntPtr leveldb_create_snapshot(IntPtr /* DB */ db);

Usage Example

Пример #1
0
 /// <summary>
 /// Return a handle to the current DB state.
 /// Iterators and Gets created with this handle will all observe a stable snapshot of the current DB state.
 /// </summary>
 public SnapShot CreateSnapshot()
 {
     return(new SnapShot(LevelDbInterop.leveldb_create_snapshot(Handle), this));
 }