Uses of Interface
org.eclipse.jgit.lib.ProgressMonitor
-
Packages that use ProgressMonitor Package Description org.eclipse.jgit.api High-level API commands (the porcelain of JGit).org.eclipse.jgit.diff Comparing file contents by computing diffs.org.eclipse.jgit.dircache Reading and editing the directory cache (index).org.eclipse.jgit.gitrepo org.eclipse.jgit.internal.storage.dfs Distributed file system based repository storage.org.eclipse.jgit.internal.storage.file File based repository storage.org.eclipse.jgit.internal.storage.pack Reading/writing Git pack files.org.eclipse.jgit.internal.storage.reftable org.eclipse.jgit.internal.storage.reftree org.eclipse.jgit.internal.transport.connectivity org.eclipse.jgit.junit org.eclipse.jgit.lib Core API for repository, config, refs, object database.org.eclipse.jgit.merge Content and commit history merge algorithms.org.eclipse.jgit.pgm.debug org.eclipse.jgit.revwalk Walking revision graphs (commit history).org.eclipse.jgit.transport Transport (fetch/push) for different protocols.org.eclipse.jgit.util Utility classes. -
-
Uses of ProgressMonitor in org.eclipse.jgit.api
Fields in org.eclipse.jgit.api declared as ProgressMonitor Modifier and Type Field Description private ProgressMonitor
CheckoutCommand. monitor
private ProgressMonitor
CherryPickCommand. monitor
private ProgressMonitor
CloneCommand. monitor
private ProgressMonitor
DiffCommand. monitor
private ProgressMonitor
FetchCommand. monitor
private ProgressMonitor
GarbageCollectCommand. monitor
private ProgressMonitor
MergeCommand. monitor
private ProgressMonitor
PullCommand. monitor
private ProgressMonitor
PushCommand. monitor
private ProgressMonitor
RebaseCommand. monitor
private ProgressMonitor
ResetCommand. monitor
private ProgressMonitor
RevertCommand. monitor
private ProgressMonitor
SubmoduleAddCommand. monitor
private ProgressMonitor
SubmoduleUpdateCommand. monitor
private ProgressMonitor
StatusCommand. progressMonitor
Methods in org.eclipse.jgit.api that return ProgressMonitor Modifier and Type Method Description ProgressMonitor
FetchCommand. getProgressMonitor()
Get progress monitorProgressMonitor
PushCommand. getProgressMonitor()
Get the progress monitorMethods in org.eclipse.jgit.api with parameters of type ProgressMonitor Modifier and Type Method Description CheckoutCommand
CheckoutCommand. setProgressMonitor(ProgressMonitor monitor)
CherryPickCommand
CherryPickCommand. setProgressMonitor(ProgressMonitor monitor)
The progress monitor associated with the cherry-pick operation.CloneCommand
CloneCommand. setProgressMonitor(ProgressMonitor monitor)
The progress monitor associated with the clone operation.DiffCommand
DiffCommand. setProgressMonitor(ProgressMonitor monitor)
The progress monitor associated with the diff operation.FetchCommand
FetchCommand. setProgressMonitor(ProgressMonitor monitor)
The progress monitor associated with the fetch operation.GarbageCollectCommand
GarbageCollectCommand. setProgressMonitor(ProgressMonitor monitor)
Set progress monitorMergeCommand
MergeCommand. setProgressMonitor(ProgressMonitor monitor)
The progress monitor associated with the diff operation.PullCommand
PullCommand. setProgressMonitor(ProgressMonitor monitor)
Set progress monitorPushCommand
PushCommand. setProgressMonitor(ProgressMonitor monitor)
The progress monitor associated with the push operation.RebaseCommand
RebaseCommand. setProgressMonitor(ProgressMonitor monitor)
Set progress monitorResetCommand
ResetCommand. setProgressMonitor(ProgressMonitor monitor)
The progress monitor associated with the reset operation.RevertCommand
RevertCommand. setProgressMonitor(ProgressMonitor monitor)
The progress monitor associated with the revert operation.StatusCommand
StatusCommand. setProgressMonitor(ProgressMonitor progressMonitor)
To set theProgressMonitor
which contains callback methods to inform you about the progress of this command.SubmoduleAddCommand
SubmoduleAddCommand. setProgressMonitor(ProgressMonitor monitor)
The progress monitor associated with the clone operation.SubmoduleUpdateCommand
SubmoduleUpdateCommand. setProgressMonitor(ProgressMonitor monitor)
The progress monitor associated with the clone operation. -
Uses of ProgressMonitor in org.eclipse.jgit.diff
Fields in org.eclipse.jgit.diff declared as ProgressMonitor Modifier and Type Field Description private ProgressMonitor
DiffFormatter. progressMonitor
Methods in org.eclipse.jgit.diff with parameters of type ProgressMonitor Modifier and Type Method Description private void
RenameDetector. advanceOrCancel(ProgressMonitor pm)
private void
RenameDetector. breakModifies(ContentSource.Pair reader, ProgressMonitor pm)
private int
SimilarityRenameDetector. buildMatrix(ProgressMonitor pm)
java.util.List<DiffEntry>
RenameDetector. compute(ContentSource.Pair reader, ProgressMonitor pm)
Detect renames in the current file set.java.util.List<DiffEntry>
RenameDetector. compute(ObjectReader reader, ProgressMonitor pm)
Detect renames in the current file set.java.util.List<DiffEntry>
RenameDetector. compute(ProgressMonitor pm)
Detect renames in the current file set.(package private) void
SimilarityRenameDetector. compute(ProgressMonitor pm)
private void
RenameDetector. findContentRenames(ContentSource.Pair reader, ProgressMonitor pm)
private void
RenameDetector. findExactRenames(ProgressMonitor pm)
private java.util.HashMap<AbbreviatedObjectId,java.lang.Object>
RenameDetector. populateMap(java.util.List<DiffEntry> diffEntries, ProgressMonitor pm)
private void
RenameDetector. rejoinModifies(ProgressMonitor pm)
void
DiffFormatter. setProgressMonitor(ProgressMonitor pm)
Set the progress monitor for long running rename detection. -
Uses of ProgressMonitor in org.eclipse.jgit.dircache
Fields in org.eclipse.jgit.dircache declared as ProgressMonitor Modifier and Type Field Description private ProgressMonitor
DirCacheCheckout. monitor
Methods in org.eclipse.jgit.dircache with parameters of type ProgressMonitor Modifier and Type Method Description void
DirCacheCheckout. setProgressMonitor(ProgressMonitor monitor)
Set a progress monitor which can be passed to built-in filter commands, providing progress information for long running tasks. -
Uses of ProgressMonitor in org.eclipse.jgit.gitrepo
Fields in org.eclipse.jgit.gitrepo declared as ProgressMonitor Modifier and Type Field Description private ProgressMonitor
RepoCommand. monitor
Methods in org.eclipse.jgit.gitrepo with parameters of type ProgressMonitor Modifier and Type Method Description RepoCommand
RepoCommand. setProgressMonitor(ProgressMonitor monitor)
The progress monitor associated with the clone operation. -
Uses of ProgressMonitor in org.eclipse.jgit.internal.storage.dfs
Methods in org.eclipse.jgit.internal.storage.dfs with parameters of type ProgressMonitor Modifier and Type Method Description private void
DfsPackCompactor. addObjectsToPack(PackWriter pw, DfsReader ctx, ProgressMonitor pm)
FsckError
DfsFsck. check(ProgressMonitor pm)
Verify the integrity and connectivity of all objects in the object database.private void
DfsFsck. checkConnectivity(ProgressMonitor pm, FsckError errors)
private void
DfsFsck. checkGitModules(ProgressMonitor pm, FsckError errors)
private void
DfsFsck. checkPacks(ProgressMonitor pm, FsckError errors)
void
DfsPackCompactor. compact(ProgressMonitor pm)
Compact the pack files together.private void
DfsPackCompactor. compactPacks(DfsReader ctx, ProgressMonitor pm)
boolean
DfsGarbageCollector. pack(ProgressMonitor pm)
Create a single new pack file containing all of the live objects.private void
DfsGarbageCollector. packGarbage(ProgressMonitor pm)
private void
DfsGarbageCollector. packHeads(ProgressMonitor pm)
private void
DfsGarbageCollector. packRefTreeGraph(ProgressMonitor pm)
private void
DfsGarbageCollector. packRest(ProgressMonitor pm)
PackLock
DfsPackParser. parse(ProgressMonitor receiving, ProgressMonitor resolving)
Parse the pack stream.void
DfsReader. selectObjectRepresentation(PackWriter packer, ProgressMonitor monitor, java.lang.Iterable<ObjectToPack> objects)
private void
DfsReader. trySelectRepresentation(PackWriter packer, ProgressMonitor monitor, java.lang.Iterable<ObjectToPack> objects, java.util.List<DfsPackFile> packs, boolean skipFound)
private void
DfsFsck. verifyPack(ProgressMonitor pm, FsckError errors, DfsReader ctx, DfsPackFile pack, ReadableChannel ch)
private DfsPackDescription
DfsGarbageCollector. writePack(DfsObjDatabase.PackSource source, PackWriter pw, ProgressMonitor pm, long estimatedPackSize)
private static void
DfsPackCompactor. writePack(DfsObjDatabase objdb, DfsPackDescription pack, PackWriter pw, ProgressMonitor pm)
-
Uses of ProgressMonitor in org.eclipse.jgit.internal.storage.file
Fields in org.eclipse.jgit.internal.storage.file declared as ProgressMonitor Modifier and Type Field Description private ProgressMonitor
GC. pm
Methods in org.eclipse.jgit.internal.storage.file with parameters of type ProgressMonitor Modifier and Type Method Description void
FileRepository. autoGC(ProgressMonitor monitor)
Check whether any housekeeping is required; if yes, run garbage collection; if not, exit without performing any work.void
PackedBatchRefUpdate. execute(RevWalk walk, ProgressMonitor monitor, java.util.List<java.lang.String> options)
Execute this batch update.PackLock
ObjectDirectoryPackParser. parse(ProgressMonitor receiving, ProgressMonitor resolving)
Parse the pack stream.void
WindowCursor. selectObjectRepresentation(PackWriter packer, ProgressMonitor monitor, java.lang.Iterable<ObjectToPack> objects)
Select the best object representation for a packer.GC
GC. setProgressMonitor(ProgressMonitor pm)
Set the progress monitor used for garbage collection methods. -
Uses of ProgressMonitor in org.eclipse.jgit.internal.storage.pack
Fields in org.eclipse.jgit.internal.storage.pack declared as ProgressMonitor Modifier and Type Field Description private ProgressMonitor
DeltaWindow. monitor
private ProgressMonitor
PackWriterBitmapPreparer. pm
private ProgressMonitor
BaseSearch. progress
private ProgressMonitor
PackOutputStream. writeMonitor
Methods in org.eclipse.jgit.internal.storage.pack with parameters of type ProgressMonitor Modifier and Type Method Description private void
PackWriter. beginPhase(PackWriter.PackingPhase phase, ProgressMonitor monitor, long cnt)
private void
PackWriter. endPhase(ProgressMonitor monitor)
private void
PackWriter. findObjectsToPack(ProgressMonitor countingMonitor, ObjectWalk walker, java.util.Set<? extends ObjectId> want, java.util.Set<? extends ObjectId> have, java.util.Set<? extends ObjectId> noBitmaps)
private void
PackWriter. parallelDeltaSearch(ProgressMonitor monitor, ObjectToPack[] list, int cnt, int threads)
boolean
PackWriter. prepareBitmapIndex(ProgressMonitor pm)
Prepares the bitmaps to be written to the bitmap index file.void
PackWriter. preparePack(ProgressMonitor countingMonitor, java.util.Set<? extends ObjectId> want, java.util.Set<? extends ObjectId> have)
Prepare the list of objects to be written to the pack stream.void
PackWriter. preparePack(ProgressMonitor countingMonitor, java.util.Set<? extends ObjectId> want, java.util.Set<? extends ObjectId> have, java.util.Set<? extends ObjectId> shallow)
Prepare the list of objects to be written to the pack stream.void
PackWriter. preparePack(ProgressMonitor countingMonitor, java.util.Set<? extends ObjectId> want, java.util.Set<? extends ObjectId> have, java.util.Set<? extends ObjectId> shallow, java.util.Set<? extends ObjectId> noBitmaps)
Prepare the list of objects to be written to the pack stream.void
PackWriter. preparePack(ProgressMonitor countingMonitor, ObjectWalk walk, java.util.Set<? extends ObjectId> interestingObjects, java.util.Set<? extends ObjectId> uninterestingObjects, java.util.Set<? extends ObjectId> noBitmaps)
Prepare the list of objects to be written to the pack stream.private void
PackWriter. searchForDeltas(ProgressMonitor monitor)
private void
PackWriter. searchForDeltas(ProgressMonitor monitor, ObjectToPack[] list, int cnt)
private void
PackWriter. searchForReuse(ProgressMonitor monitor)
private void
PackWriter. searchForReuse(ProgressMonitor monitor, java.util.List<ObjectToPack> list)
void
ObjectReuseAsIs. selectObjectRepresentation(PackWriter packer, ProgressMonitor monitor, java.lang.Iterable<ObjectToPack> objects)
Select the best object representation for a packer.private void
PackWriter. singleThreadDeltaSearch(ProgressMonitor monitor, ObjectToPack[] list, int cnt)
void
PackWriter. writePack(ProgressMonitor compressMonitor, ProgressMonitor writeMonitor, java.io.OutputStream packStream)
Write the prepared pack to the supplied stream.Constructors in org.eclipse.jgit.internal.storage.pack with parameters of type ProgressMonitor Constructor Description BaseSearch(ProgressMonitor countingMonitor, java.util.Set<RevTree> bases, ObjectIdOwnerMap<ObjectToPack> objects, java.util.List<ObjectToPack> edges, ObjectReader or)
DeltaWindow(PackConfig pc, DeltaCache dc, ObjectReader or, ProgressMonitor pm, long bpu, ObjectToPack[] in, int beginIndex, int endIndex)
PackOutputStream(ProgressMonitor writeMonitor, java.io.OutputStream out, PackWriter pw)
Initialize a pack output stream.PackWriterBitmapPreparer(ObjectReader reader, PackBitmapIndexBuilder writeBitmaps, ProgressMonitor pm, java.util.Set<? extends ObjectId> want, PackConfig config)
-
Uses of ProgressMonitor in org.eclipse.jgit.internal.storage.reftable
Methods in org.eclipse.jgit.internal.storage.reftable with parameters of type ProgressMonitor Modifier and Type Method Description void
ReftableBatchRefUpdate. execute(RevWalk rw, ProgressMonitor pm, java.util.List<java.lang.String> options)
Execute this batch update. -
Uses of ProgressMonitor in org.eclipse.jgit.internal.storage.reftree
Methods in org.eclipse.jgit.internal.storage.reftree with parameters of type ProgressMonitor Modifier and Type Method Description void
RefTreeBatch. execute(RevWalk rw, ProgressMonitor monitor)
Execute this batch update without option strings. -
Uses of ProgressMonitor in org.eclipse.jgit.internal.transport.connectivity
Methods in org.eclipse.jgit.internal.transport.connectivity with parameters of type ProgressMonitor Modifier and Type Method Description private void
FullConnectivityChecker. checkCommitTree(ConnectivityChecker.ConnectivityCheckInfo connectivityCheckInfo, ObjectWalk ow, ProgressMonitor pm)
void
FullConnectivityChecker. checkConnectivity(ConnectivityChecker.ConnectivityCheckInfo connectivityCheckInfo, java.util.Set<ObjectId> haves, ProgressMonitor pm)
void
IterativeConnectivityChecker. checkConnectivity(ConnectivityChecker.ConnectivityCheckInfo connectivityCheckInfo, java.util.Set<ObjectId> advertisedHaves, ProgressMonitor pm)
private void
FullConnectivityChecker. checkObjects(ConnectivityChecker.ConnectivityCheckInfo connectivityCheckInfo, ObjectWalk ow, ProgressMonitor pm)
private boolean
FullConnectivityChecker. markStartAndKnownNodes(ConnectivityChecker.ConnectivityCheckInfo connectivityCheckInfo, ObjectWalk ow, java.util.Set<ObjectId> haves, ProgressMonitor pm)
-
Uses of ProgressMonitor in org.eclipse.jgit.junit
Classes in org.eclipse.jgit.junit that implement ProgressMonitor Modifier and Type Class Description class
StrictWorkMonitor
Strict work monitor -
Uses of ProgressMonitor in org.eclipse.jgit.lib
Classes in org.eclipse.jgit.lib that implement ProgressMonitor Modifier and Type Class Description class
BatchingProgressMonitor
ProgressMonitor that batches update events.class
EmptyProgressMonitor
A convenient base class which provides empty method bodies for all ProgressMonitor methods.class
NullProgressMonitor
A NullProgressMonitor does not report progress anywhere.class
TextProgressMonitor
A simple progress reporter printing on a stream.class
ThreadSafeProgressMonitor
Wrapper around the generalProgressMonitor
to make it thread safe.Fields in org.eclipse.jgit.lib declared as ProgressMonitor Modifier and Type Field Description private ProgressMonitor
IndexDiff.ProgressReportingFilter. monitor
private ProgressMonitor
ThreadSafeProgressMonitor. pm
Methods in org.eclipse.jgit.lib with parameters of type ProgressMonitor Modifier and Type Method Description void
Repository. autoGC(ProgressMonitor monitor)
Check whether any housekeeping is required; if yes, run garbage collection; if not, exit without performing any work.boolean
IndexDiff. diff(ProgressMonitor monitor, int estWorkTreeSize, int estIndexSize, java.lang.String title)
Run the diff operation.boolean
IndexDiff. diff(ProgressMonitor monitor, int estWorkTreeSize, int estIndexSize, java.lang.String title, RepositoryBuilderFactory factory)
Run the diff operation.void
BatchRefUpdate. execute(RevWalk walk, ProgressMonitor monitor)
Execute this batch update without option strings.void
BatchRefUpdate. execute(RevWalk walk, ProgressMonitor monitor, java.util.List<java.lang.String> options)
Execute this batch update.Constructors in org.eclipse.jgit.lib with parameters of type ProgressMonitor Constructor Description ProgressReportingFilter(ProgressMonitor monitor, int total)
ThreadSafeProgressMonitor(ProgressMonitor pm)
Wrap a ProgressMonitor to be thread safe. -
Uses of ProgressMonitor in org.eclipse.jgit.merge
Fields in org.eclipse.jgit.merge declared as ProgressMonitor Modifier and Type Field Description protected ProgressMonitor
Merger. monitor
A progress monitor.Methods in org.eclipse.jgit.merge with parameters of type ProgressMonitor Modifier and Type Method Description void
Merger. setProgressMonitor(ProgressMonitor monitor)
Set a progress monitor. -
Uses of ProgressMonitor in org.eclipse.jgit.pgm.debug
Fields in org.eclipse.jgit.pgm.debug declared as ProgressMonitor Modifier and Type Field Description private ProgressMonitor
RebuildCommitGraph. pm
-
Uses of ProgressMonitor in org.eclipse.jgit.revwalk
Fields in org.eclipse.jgit.revwalk declared as ProgressMonitor Modifier and Type Field Description private ProgressMonitor
BitmapWalker. pm
Methods in org.eclipse.jgit.revwalk with parameters of type ProgressMonitor Modifier and Type Method Description static java.util.List<Ref>
RevWalkUtils. findBranchesReachableFrom(RevCommit commit, RevWalk revWalk, java.util.Collection<Ref> refs, ProgressMonitor monitor)
Find the list of branches a given commit is reachable from when following parents.Constructors in org.eclipse.jgit.revwalk with parameters of type ProgressMonitor Constructor Description BitmapWalker(ObjectWalk walker, BitmapIndex bitmapIndex, ProgressMonitor pm)
Create a BitmapWalker. -
Uses of ProgressMonitor in org.eclipse.jgit.transport
Classes in org.eclipse.jgit.transport that implement ProgressMonitor Modifier and Type Class Description (package private) class
SideBandProgressMonitor
Write progress messages out to the sideband channel.Fields in org.eclipse.jgit.transport declared as ProgressMonitor Modifier and Type Field Description private ProgressMonitor
SideBandInputStream. monitor
Methods in org.eclipse.jgit.transport with parameters of type ProgressMonitor Modifier and Type Method Description java.io.OutputStream
AmazonS3. beginPut(java.lang.String bucket, java.lang.String key, ProgressMonitor monitor, java.lang.String monitorTask)
Atomically create or replace a single large object.void
ConnectivityChecker. checkConnectivity(ConnectivityChecker.ConnectivityCheckInfo connectivityCheckInfo, java.util.Set<ObjectId> haves, ProgressMonitor pm)
Checks connectivity of the commit graph after pack uploading.protected abstract void
BaseFetchConnection. doFetch(ProgressMonitor monitor, java.util.Collection<Ref> want, java.util.Set<ObjectId> have)
Implementation ofBaseFetchConnection.fetch(ProgressMonitor, Collection, Set)
without checking for multiple fetch.protected void
BasePackFetchConnection. doFetch(ProgressMonitor monitor, java.util.Collection<Ref> want, java.util.Set<ObjectId> have, java.io.OutputStream outputStream)
Execute common ancestor negotiation and fetch the objects.protected void
BundleFetchConnection. doFetch(ProgressMonitor monitor, java.util.Collection<Ref> want, java.util.Set<ObjectId> have)
Implementation ofBaseFetchConnection.fetch(ProgressMonitor, Collection, Set)
without checking for multiple fetch.protected void
TransportHttp.SmartHttpFetchConnection. doFetch(ProgressMonitor monitor, java.util.Collection<Ref> want, java.util.Set<ObjectId> have, java.io.OutputStream outputStream)
protected void
WalkFetchConnection. doFetch(ProgressMonitor monitor, java.util.Collection<Ref> want, java.util.Set<ObjectId> have)
Implementation ofBaseFetchConnection.fetch(ProgressMonitor, Collection, Set)
without checking for multiple fetch.protected void
BasePackPushConnection. doPush(ProgressMonitor monitor, java.util.Map<java.lang.String,RemoteRefUpdate> refUpdates, java.io.OutputStream outputStream)
Push one or more objects and update the remote repository.protected void
TransportHttp.SmartHttpPushConnection. doPush(ProgressMonitor monitor, java.util.Map<java.lang.String,RemoteRefUpdate> refUpdates, java.io.OutputStream outputStream)
private void
WalkFetchConnection. downloadObject(ProgressMonitor pm, AnyObjectId id)
(package private) void
WalkFetchConnection.RemotePack. downloadPack(ProgressMonitor monitor)
private boolean
WalkFetchConnection. downloadPackedObject(ProgressMonitor monitor, AnyObjectId id)
private java.lang.String
BasePackPushConnection. enableCapabilities(ProgressMonitor monitor, java.io.OutputStream outputStream)
(package private) void
FetchProcess. execute(ProgressMonitor monitor, FetchResult result)
(package private) PushResult
PushProcess. execute(ProgressMonitor monitor)
Perform push operation between local and remote repository - set remote refs appropriately, send needed objects and update local tracking refs.private void
FetchProcess. executeImp(ProgressMonitor monitor, FetchResult result)
private java.util.Collection<WalkRemoteObjectDatabase>
WalkFetchConnection. expandOneAlternate(AnyObjectId id, ProgressMonitor pm)
void
BaseFetchConnection. fetch(ProgressMonitor monitor, java.util.Collection<Ref> want, java.util.Set<ObjectId> have)
Fetch objects we don't have but that are reachable from advertised refs.void
BaseFetchConnection. fetch(ProgressMonitor monitor, java.util.Collection<Ref> want, java.util.Set<ObjectId> have, java.io.OutputStream out)
Fetch objects we don't have but that are reachable from advertised refs.void
BasePackFetchConnection. fetch(ProgressMonitor monitor, java.util.Collection<Ref> want, java.util.Set<ObjectId> have)
Fetch objects we don't have but that are reachable from advertised refs.void
BasePackFetchConnection. fetch(ProgressMonitor monitor, java.util.Collection<Ref> want, java.util.Set<ObjectId> have, java.io.OutputStream outputStream)
Fetch objects we don't have but that are reachable from advertised refs.void
FetchConnection. fetch(ProgressMonitor monitor, java.util.Collection<Ref> want, java.util.Set<ObjectId> have)
Fetch objects we don't have but that are reachable from advertised refs.void
FetchConnection. fetch(ProgressMonitor monitor, java.util.Collection<Ref> want, java.util.Set<ObjectId> have, java.io.OutputStream out)
Fetch objects we don't have but that are reachable from advertised refs.FetchResult
Transport. fetch(ProgressMonitor monitor, java.util.Collection<RefSpec> toFetch)
Fetch objects and refs from the remote repository to the local one.private void
FetchProcess. fetchObjects(ProgressMonitor monitor)
private void
BasePackFetchConnection. negotiate(ProgressMonitor monitor)
(package private) void
WalkFetchConnection.RemotePack. openIndex(ProgressMonitor pm)
PackLock
PackParser. parse(ProgressMonitor progress)
Parse the pack stream.PackLock
PackParser. parse(ProgressMonitor receiving, ProgressMonitor resolving)
Parse the pack stream.private void
PackParser. processDeltas(ProgressMonitor resolving)
void
BasePackPushConnection. push(ProgressMonitor monitor, java.util.Map<java.lang.String,RemoteRefUpdate> refUpdates)
Pushes to the remote repository basing on provided specification.void
BasePackPushConnection. push(ProgressMonitor monitor, java.util.Map<java.lang.String,RemoteRefUpdate> refUpdates, java.io.OutputStream outputStream)
Pushes to the remote repository basing on provided specification.void
PushConnection. push(ProgressMonitor monitor, java.util.Map<java.lang.String,RemoteRefUpdate> refUpdates)
Pushes to the remote repository basing on provided specification.void
PushConnection. push(ProgressMonitor monitor, java.util.Map<java.lang.String,RemoteRefUpdate> refUpdates, java.io.OutputStream out)
Pushes to the remote repository basing on provided specification.PushResult
Transport. push(ProgressMonitor monitor, java.util.Collection<RemoteRefUpdate> toPush)
Push objects and refs from the local repository to the remote one.PushResult
Transport. push(ProgressMonitor monitor, java.util.Collection<RemoteRefUpdate> toPush, java.io.OutputStream out)
Push objects and refs from the local repository to the remote one.void
WalkPushConnection. push(ProgressMonitor monitor, java.util.Map<java.lang.String,RemoteRefUpdate> refUpdates)
Pushes to the remote repository basing on provided specification.void
WalkPushConnection. push(ProgressMonitor monitor, java.util.Map<java.lang.String,RemoteRefUpdate> refUpdates, java.io.OutputStream out)
Pushes to the remote repository basing on provided specification.(package private) void
AmazonS3. putImpl(java.lang.String bucket, java.lang.String key, byte[] csum, TemporaryBuffer buf, ProgressMonitor monitor, java.lang.String monitorTask)
private void
BasePackFetchConnection. receivePack(ProgressMonitor monitor, java.io.OutputStream outputStream)
private void
PackParser. resolveDeltas(ProgressMonitor progress)
private void
PackParser. resolveDeltas(PackedObjectInfo oe, ProgressMonitor progress)
private void
PackParser. resolveDeltas(PackParser.DeltaVisit visit, int type, PackParser.ObjectTypeAndSize info, ProgressMonitor progress)
private void
PackParser. resolveDeltasWithExternalBases(ProgressMonitor progress)
private void
WalkPushConnection. sendpack(java.util.List<RemoteRefUpdate> updates, ProgressMonitor monitor)
private void
UploadPack. sendPack(ProgressMonitor pm, PacketLineOut pckOut, java.io.OutputStream packOut, FetchRequest req, PackStatistics.Accumulator accumulator, java.util.Collection<Ref> allTags, java.util.List<ObjectId> unshallowCommits, java.util.List<ObjectId> deepenNots)
Send the requested objects to the client.void
BundleWriter. writeBundle(ProgressMonitor monitor, java.io.OutputStream os)
Generate and write the bundle to the output stream.private void
BasePackPushConnection. writeCommands(java.util.Collection<RemoteRefUpdate> refUpdates, ProgressMonitor monitor, java.io.OutputStream outputStream)
(package private) java.io.OutputStream
TransportAmazonS3.DatabaseS3. writeFile(java.lang.String path, ProgressMonitor monitor, java.lang.String monitorTask)
(package private) java.io.OutputStream
TransportSftp.SftpObjectDB. writeFile(java.lang.String path, ProgressMonitor monitor, java.lang.String monitorTask)
(package private) java.io.OutputStream
WalkRemoteObjectDatabase. writeFile(java.lang.String path, ProgressMonitor monitor, java.lang.String monitorTask)
Open a remote file for writing.private void
BasePackPushConnection. writePack(java.util.Map<java.lang.String,RemoteRefUpdate> refUpdates, ProgressMonitor monitor)
Constructors in org.eclipse.jgit.transport with parameters of type ProgressMonitor Constructor Description SideBandInputStream(java.io.InputStream in, ProgressMonitor progress, java.io.Writer messageStream, java.io.OutputStream outputStream)
-
Uses of ProgressMonitor in org.eclipse.jgit.util
Methods in org.eclipse.jgit.util with parameters of type ProgressMonitor Modifier and Type Method Description void
TemporaryBuffer.LocalFile. writeTo(java.io.OutputStream os, ProgressMonitor pm)
void
TemporaryBuffer. writeTo(java.io.OutputStream os, ProgressMonitor pm)
Send this buffer to an output stream.
-