Uses of Interface
org.eclipse.jgit.storage.dht.spi.WriteBuffer

Packages that use WriteBuffer
org.eclipse.jgit.storage.dht.spi   
org.eclipse.jgit.storage.dht.spi.cache   
org.eclipse.jgit.storage.dht.spi.memory   
org.eclipse.jgit.storage.dht.spi.util   
 

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

Methods in org.eclipse.jgit.storage.dht.spi that return WriteBuffer
 WriteBuffer Database.newWriteBuffer()
          Create a new WriteBuffer for the current thread.
 

Methods in org.eclipse.jgit.storage.dht.spi with parameters of type WriteBuffer
 void ObjectIndexTable.add(ObjectIndexKey objId, ObjectInfo info, WriteBuffer buffer)
          Record the fact that objId can be found by info.
 void ChunkTable.put(PackChunk.Members chunk, WriteBuffer buffer)
          Put some (or all) of a single chunk.
 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 ChunkTable.remove(ChunkKey key, WriteBuffer buffer)
          Completely remove a chunk and all of its data elements.
 void ObjectIndexTable.remove(ObjectIndexKey objId, ChunkKey chunk, WriteBuffer buffer)
          Remove a single chunk from an object.
 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.
 

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

Classes in org.eclipse.jgit.storage.dht.spi.cache that implement WriteBuffer
 class CacheBuffer
          WriteBuffer implementation for a CacheDatabase.
 

Methods in org.eclipse.jgit.storage.dht.spi.cache that return WriteBuffer
 WriteBuffer CacheBuffer.getWriteBuffer()
           
 

Methods in org.eclipse.jgit.storage.dht.spi.cache with parameters of type WriteBuffer
 void CacheObjectIndexTable.add(ObjectIndexKey objId, ObjectInfo info, WriteBuffer buffer)
           
 void CacheChunkTable.put(PackChunk.Members chunk, WriteBuffer buffer)
           
 void CacheRepositoryTable.put(RepositoryKey repo, ChunkInfo info, WriteBuffer buffer)
           
 void CacheRepositoryTable.put(RepositoryKey repo, GitStore.CachedPackInfo info, WriteBuffer buffer)
           
 void CacheChunkTable.remove(ChunkKey key, WriteBuffer buffer)
           
 void CacheObjectIndexTable.remove(ObjectIndexKey objId, ChunkKey chunk, WriteBuffer buffer)
           
 void CacheRepositoryTable.remove(RepositoryKey repo, CachedPackKey key, WriteBuffer buffer)
           
 void CacheRepositoryTable.remove(RepositoryKey repo, ChunkKey chunk, WriteBuffer buffer)
           
 

Constructors in org.eclipse.jgit.storage.dht.spi.cache with parameters of type WriteBuffer
CacheBuffer(WriteBuffer dbBuffer, CacheService client, CacheOptions options)
          Initialize a new buffer.
 

Uses of WriteBuffer in org.eclipse.jgit.storage.dht.spi.memory
 

Methods in org.eclipse.jgit.storage.dht.spi.memory that return WriteBuffer
 WriteBuffer MemoryDatabase.newWriteBuffer()
           
 

Uses of WriteBuffer in org.eclipse.jgit.storage.dht.spi.util
 

Classes in org.eclipse.jgit.storage.dht.spi.util that implement WriteBuffer
 class AbstractWriteBuffer
          Abstract buffer service built on top of an ExecutorService.
 



Copyright © 2011. All Rights Reserved.