Uses of Class
org.eclipse.jgit.storage.dht.RepositoryKey

Packages that use RepositoryKey
org.eclipse.jgit.storage.dht   
org.eclipse.jgit.storage.dht.spi   
org.eclipse.jgit.storage.dht.spi.cache   
 

Uses of RepositoryKey in org.eclipse.jgit.storage.dht
 

Methods in org.eclipse.jgit.storage.dht that return RepositoryKey
static RepositoryKey RepositoryKey.create(int sequentialId)
           
static RepositoryKey RepositoryKey.fromBytes(byte[] key)
           
static RepositoryKey RepositoryKey.fromInt(int reverseId)
           
static RepositoryKey RepositoryKey.fromString(java.lang.String key)
           
 RepositoryKey DhtRepository.getRepositoryKey()
           
 RepositoryKey ObjectIndexKey.getRepositoryKey()
           
 RepositoryKey DhtRepositoryBuilder.getRepositoryKey()
           
 RepositoryKey RefKey.getRepositoryKey()
           
 RepositoryKey ChunkInfo.getRepositoryKey()
           
 RepositoryKey ChunkKey.getRepositoryKey()
           
 

Methods in org.eclipse.jgit.storage.dht with parameters of type RepositoryKey
static ObjectIndexKey ObjectIndexKey.create(RepositoryKey repo, AnyObjectId objId)
           
static ChunkKey ChunkKey.create(RepositoryKey repo, ObjectId chunk)
           
static RefKey RefKey.create(RepositoryKey repo, java.lang.String name)
           
 B DhtRepositoryBuilder.setRepositoryKey(RepositoryKey key)
           
 

Uses of RepositoryKey in org.eclipse.jgit.storage.dht.spi
 

Methods in org.eclipse.jgit.storage.dht.spi that return RepositoryKey
 RepositoryKey RepositoryIndexTable.get(RepositoryName name)
          Find a repository by name.
 RepositoryKey RepositoryTable.nextKey()
          Generate a new unique RepositoryKey.
 

Methods in org.eclipse.jgit.storage.dht.spi with parameters of type RepositoryKey
 java.util.Map<RefKey,GitStore.RefData> RefTable.getAll(Context options, RepositoryKey repository)
          Read all known references in the repository.
 java.util.Collection<GitStore.CachedPackInfo> RepositoryTable.getCachedPacks(RepositoryKey repo)
          Get the cached packs, if any.
 void RepositoryTable.put(RepositoryKey repo, ChunkInfo info, WriteBuffer buffer)
          Record the existence of a chunk.
 void RepositoryTable.put(RepositoryKey repo, GitStore.CachedPackInfo info, WriteBuffer buffer)
          Record the existence of a cached pack.
 void RepositoryIndexTable.putUnique(RepositoryName name, RepositoryKey key)
          Atomically record the association of name to identifier.
 void RepositoryTable.remove(RepositoryKey repo, CachedPackKey key, WriteBuffer buffer)
          Remove the existence of a cached pack.
 void RepositoryTable.remove(RepositoryKey repo, ChunkKey chunk, WriteBuffer buffer)
          Remove the information about a chunk.
 void RepositoryIndexTable.remove(RepositoryName name, RepositoryKey key)
          Remove the association of a name to an identifier.
 

Uses of RepositoryKey in org.eclipse.jgit.storage.dht.spi.cache
 

Methods in org.eclipse.jgit.storage.dht.spi.cache that return RepositoryKey
 RepositoryKey CacheRepositoryIndexTable.get(RepositoryName name)
           
 RepositoryKey CacheRepositoryTable.nextKey()
           
 

Methods in org.eclipse.jgit.storage.dht.spi.cache with parameters of type RepositoryKey
 java.util.Map<RefKey,GitStore.RefData> CacheRefTable.getAll(Context options, RepositoryKey repository)
           
 java.util.Collection<GitStore.CachedPackInfo> CacheRepositoryTable.getCachedPacks(RepositoryKey repo)
           
 void CacheRepositoryTable.put(RepositoryKey repo, ChunkInfo info, WriteBuffer buffer)
           
 void CacheRepositoryTable.put(RepositoryKey repo, GitStore.CachedPackInfo info, WriteBuffer buffer)
           
 void CacheRepositoryIndexTable.putUnique(RepositoryName name, RepositoryKey key)
           
 void CacheRepositoryTable.remove(RepositoryKey repo, CachedPackKey key, WriteBuffer buffer)
           
 void CacheRepositoryTable.remove(RepositoryKey repo, ChunkKey chunk, WriteBuffer buffer)
           
 void CacheRepositoryIndexTable.remove(RepositoryName name, RepositoryKey key)
           
 



Copyright © 2011. All Rights Reserved.