Uses of Class
org.eclipse.jgit.internal.storage.io.BlockSource
-
Packages that use BlockSource Package Description org.eclipse.jgit.internal.storage.dfs Distributed file system based repository storage.org.eclipse.jgit.internal.storage.io org.eclipse.jgit.internal.storage.reftable -
-
Uses of BlockSource in org.eclipse.jgit.internal.storage.dfs
Subclasses of BlockSource in org.eclipse.jgit.internal.storage.dfs Modifier and Type Class Description private static class
DfsReftable.CacheSource
-
Uses of BlockSource in org.eclipse.jgit.internal.storage.io
Methods in org.eclipse.jgit.internal.storage.io that return BlockSource Modifier and Type Method Description static BlockSource
BlockSource. from(byte[] content)
Wrap a byte array as aBlockSource
.static BlockSource
BlockSource. from(java.io.FileInputStream in)
Read from aFileInputStream
.static BlockSource
BlockSource. from(java.nio.channels.FileChannel ch)
Read from aFileChannel
. -
Uses of BlockSource in org.eclipse.jgit.internal.storage.reftable
Fields in org.eclipse.jgit.internal.storage.reftable declared as BlockSource Modifier and Type Field Description private BlockSource
ReftableReader. src
Methods in org.eclipse.jgit.internal.storage.reftable with parameters of type BlockSource Modifier and Type Method Description private long
BlockReader. inflateBuf(BlockSource src, long pos, int blockLen, int fileBlockSize)
private void
BlockReader. parseBlockStart(BlockSource src, long pos, int fileBlockSize)
(package private) void
BlockReader. readBlock(BlockSource src, long pos, int fileBlockSize)
private void
BlockReader. readBlockIntoBuf(BlockSource src, long pos, int size)
Constructors in org.eclipse.jgit.internal.storage.reftable with parameters of type BlockSource Constructor Description ReftableReader(BlockSource src)
Initialize a new reftable reader.
-