Package com._1c.g5.v8.bm.store
Interface IBmPersistentStoreReaderCallback<T>
- Type Parameters:
T
- the result type.
public interface IBmPersistentStoreReaderCallback<T>
-
Method Summary
Modifier and TypeMethodDescriptionexecute
(byte[] data, int offset, int length) Method invoked byIBmPersistentLongStore.read(long, IBmPersistentStoreReaderCallback)
andIBmPersistentStringStore#read(long, IBmPersistentStoreReaderCallback)
methods.
-
Method Details
-
execute
Method invoked byIBmPersistentLongStore.read(long, IBmPersistentStoreReaderCallback)
andIBmPersistentStringStore#read(long, IBmPersistentStoreReaderCallback)
methods.- Parameters:
data
- A byte array containing the read data. May not benull
.offset
- The offset of the read data within the array.length
- The length of the read data.- Returns:
- a result object or
null
if none.
-