Uses of Interface
org.eclipse.jgit.transport.PackLock
-
Packages that use PackLock Package Description 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.transport Transport (fetch/push) for different protocols. -
-
Uses of PackLock in org.eclipse.jgit.internal.storage.dfs
Methods in org.eclipse.jgit.internal.storage.dfs that return PackLock Modifier and Type Method Description PackLock
DfsPackParser. parse(ProgressMonitor receiving, ProgressMonitor resolving)
Parse the pack stream. -
Uses of PackLock in org.eclipse.jgit.internal.storage.file
Classes in org.eclipse.jgit.internal.storage.file that implement PackLock Modifier and Type Class Description class
PackLockImpl
Keeps track of aPack
's associated.keep
file.Methods in org.eclipse.jgit.internal.storage.file that return PackLock Modifier and Type Method Description PackLock
ObjectDirectoryPackParser. parse(ProgressMonitor receiving, ProgressMonitor resolving)
Parse the pack stream.private PackLock
ObjectDirectoryPackParser. renameAndOpenPack(java.lang.String lockMessage)
-
Uses of PackLock in org.eclipse.jgit.transport
Fields in org.eclipse.jgit.transport declared as PackLock Modifier and Type Field Description private PackLock
BasePackFetchConnection. packLock
private PackLock
BundleFetchConnection. packLock
private PackLock
ReceivePack. packLock
Lock around the received pack file, while updating refs.Fields in org.eclipse.jgit.transport with type parameters of type PackLock Modifier and Type Field Description private java.util.ArrayList<PackLock>
FetchProcess. packLocks
(package private) java.util.List<PackLock>
WalkFetchConnection. packLocks
Methods in org.eclipse.jgit.transport that return PackLock Modifier and Type Method Description PackLock
PackParser. parse(ProgressMonitor progress)
Parse the pack stream.PackLock
PackParser. parse(ProgressMonitor receiving, ProgressMonitor resolving)
Parse the pack stream.Methods in org.eclipse.jgit.transport that return types with arguments of type PackLock Modifier and Type Method Description java.util.Collection<PackLock>
BasePackFetchConnection. getPackLocks()
All locks created by the lastFetchConnection.fetch(ProgressMonitor, Collection, Set)
call.java.util.Collection<PackLock>
BundleFetchConnection. getPackLocks()
All locks created by the lastFetchConnection.fetch(ProgressMonitor, Collection, Set)
call.java.util.Collection<PackLock>
FetchConnection. getPackLocks()
All locks created by the lastFetchConnection.fetch(ProgressMonitor, Collection, Set)
call.java.util.Collection<PackLock>
WalkFetchConnection. getPackLocks()
All locks created by the lastFetchConnection.fetch(ProgressMonitor, Collection, Set)
call.
-