AcTools.LapTimes.LevelDbUtils.WriteBatch.Iterate C# (CSharp) 메소드

Iterate() 공개 메소드

Support for iterating over a batch.
public Iterate ( object state, Action put, Action deleted ) : void
state object
put Action
deleted Action
리턴 void
        public void Iterate(object state, Action<object, byte[], int, byte[], int> put, Action<object, byte[], int> deleted) {
            LevelDbInterop.leveldb_writebatch_iterate(Handle, state, put, deleted);
        }