Package com._1c.g5.v8.bm.store
Interface IBmPersistentStoreReaderCallback<T>
-
- Type Parameters:
T- the result type.
public interface IBmPersistentStoreReaderCallback<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Texecute(byte[] data, int offset, int length)Method invoked byIBmPersistentLongStore.read(long, IBmPersistentStoreReaderCallback)andIBmPersistentStringStore#read(long, IBmPersistentStoreReaderCallback)methods.
-
-
-
Method Detail
-
execute
T execute(byte[] data, int offset, int length)
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
nullif none.
-
-