Package org.apache.jena.dboe.base.block
Class BlockMgrBase
- java.lang.Object
-
- org.apache.jena.dboe.base.block.BlockMgrBase
-
- All Implemented Interfaces:
org.apache.jena.atlas.lib.Closeable,org.apache.jena.atlas.lib.Sync,BlockMgr
- Direct Known Subclasses:
BlockMgrFileAccess
public abstract class BlockMgrBase extends java.lang.Object implements BlockMgr
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Blockallocate(int blkSize)Allocate an uninitialized block - writable - call only inside a update sequence.voidbeginRead()Start of readvoidbeginUpdate()Start of updatevoidendRead()Completion of readvoidendUpdate()Completion of updatejava.lang.StringgetLabel()
-
-
-
Method Detail
-
allocate
public final Block allocate(int blkSize)
Description copied from interface:BlockMgrAllocate an uninitialized block - writable - call only inside a update sequence. If blockSize is -1, means "default/fixed size" for this BlockMgr
-
endUpdate
public void endUpdate()
Description copied from interface:BlockMgrCompletion of update
-
beginUpdate
public void beginUpdate()
Description copied from interface:BlockMgrStart of update- Specified by:
beginUpdatein interfaceBlockMgr
-
beginRead
public void beginRead()
Description copied from interface:BlockMgrStart of read
-
-