Class UnpackedObjectCache
- java.lang.Object
-
- org.eclipse.jgit.internal.storage.file.UnpackedObjectCache
-
class UnpackedObjectCache extends java.lang.ObjectRemembers objects that are currently unpacked.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static classUnpackedObjectCache.Table
-
Field Summary
Fields Modifier and Type Field Description private static intINITIAL_BITSprivate static intMAX_BITSprivate UnpackedObjectCache.Tabletable
-
Constructor Summary
Constructors Constructor Description UnpackedObjectCache()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) voidadd(AnyObjectId objectId)(package private) voidclear()(package private) booleanisUnpacked(AnyObjectId objectId)(package private) voidremove(AnyObjectId objectId)
-
-
-
Field Detail
-
INITIAL_BITS
private static final int INITIAL_BITS
- See Also:
- Constant Field Values
-
MAX_BITS
private static final int MAX_BITS
- See Also:
- Constant Field Values
-
table
private volatile UnpackedObjectCache.Table table
-
-
Method Detail
-
isUnpacked
boolean isUnpacked(AnyObjectId objectId)
-
add
void add(AnyObjectId objectId)
-
remove
void remove(AnyObjectId objectId)
-
clear
void clear()
-
-