Package com._1c.g5.v8.bm.store
Interface IBmPersistentStoreReaderCallback<T>
- 
- Type Parameters:
- T- the result type.
 
 public interface IBmPersistentStoreReaderCallback<T>
- 
- 
Method SummaryAll 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- 
executeT 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 be- null.
- offset- The offset of the read data within the array.
- length- The length of the read data.
- Returns:
- a result object or nullif none.
 
 
- 
 
-