Package org.eclipse.jgit.transport
Class ReceivedPackStatistics
- java.lang.Object
-
- org.eclipse.jgit.transport.ReceivedPackStatistics
-
public class ReceivedPackStatistics extends java.lang.Object
Statistics aboutPackParser
.- Since:
- 4.6
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ReceivedPackStatistics.Builder
A builder forReceivedPackStatistics
.
-
Field Summary
Fields Modifier and Type Field Description private long
numBytesRead
private long
numDeltaBlob
private long
numDeltaCommit
private long
numDeltaTag
private long
numDeltaTree
private long
numOfsDelta
private long
numRefDelta
private long
numWholeBlob
private long
numWholeCommit
private long
numWholeTag
private long
numWholeTree
-
Constructor Summary
Constructors Constructor Description ReceivedPackStatistics()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getNumBytesRead()
Get number of bytes read from the input streamlong
getNumDeltaBlob()
Get number of delta blob objects in the packlong
getNumDeltaCommit()
Get number of delta commit objects in the packlong
getNumDeltaTag()
Get number of delta tag objects in the packlong
getNumDeltaTree()
Get number of delta tree objects in the packlong
getNumOfsDelta()
Get number of offset delta objects in the packlong
getNumRefDelta()
Get number of ref delta objects in the packlong
getNumWholeBlob()
Get number of whole blob objects in the packlong
getNumWholeCommit()
Get number of whole commit objects in the packlong
getNumWholeTag()
Get number of whole tag objects in the packlong
getNumWholeTree()
Get number of whole tree objects in the pack
-
-
-
Field Detail
-
numBytesRead
private long numBytesRead
-
numWholeCommit
private long numWholeCommit
-
numWholeTree
private long numWholeTree
-
numWholeBlob
private long numWholeBlob
-
numWholeTag
private long numWholeTag
-
numOfsDelta
private long numOfsDelta
-
numRefDelta
private long numRefDelta
-
numDeltaCommit
private long numDeltaCommit
-
numDeltaTree
private long numDeltaTree
-
numDeltaBlob
private long numDeltaBlob
-
numDeltaTag
private long numDeltaTag
-
-
Method Detail
-
getNumBytesRead
public long getNumBytesRead()
Get number of bytes read from the input stream- Returns:
- number of bytes read from the input stream
-
getNumWholeCommit
public long getNumWholeCommit()
Get number of whole commit objects in the pack- Returns:
- number of whole commit objects in the pack
-
getNumWholeTree
public long getNumWholeTree()
Get number of whole tree objects in the pack- Returns:
- number of whole tree objects in the pack
-
getNumWholeBlob
public long getNumWholeBlob()
Get number of whole blob objects in the pack- Returns:
- number of whole blob objects in the pack
-
getNumWholeTag
public long getNumWholeTag()
Get number of whole tag objects in the pack- Returns:
- number of whole tag objects in the pack
-
getNumOfsDelta
public long getNumOfsDelta()
Get number of offset delta objects in the pack- Returns:
- number of offset delta objects in the pack
-
getNumRefDelta
public long getNumRefDelta()
Get number of ref delta objects in the pack- Returns:
- number of ref delta objects in the pack
-
getNumDeltaCommit
public long getNumDeltaCommit()
Get number of delta commit objects in the pack- Returns:
- number of delta commit objects in the pack
-
getNumDeltaTree
public long getNumDeltaTree()
Get number of delta tree objects in the pack- Returns:
- number of delta tree objects in the pack
-
getNumDeltaBlob
public long getNumDeltaBlob()
Get number of delta blob objects in the pack- Returns:
- number of delta blob objects in the pack
-
getNumDeltaTag
public long getNumDeltaTag()
Get number of delta tag objects in the pack- Returns:
- number of delta tag objects in the pack
-
-