Uses of Interface
org.eclipse.jgit.storage.dht.AsyncCallback

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

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

Subinterfaces of AsyncCallback in org.eclipse.jgit.storage.dht
 interface StreamingCallback<T>
          Extension of AsyncCallback supporting partial results.
 

Classes in org.eclipse.jgit.storage.dht that implement AsyncCallback
 class Sync<T>
          Helper to implement a synchronous method in terms of an asynchronous one.
 

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

Methods in org.eclipse.jgit.storage.dht.spi with parameters of type AsyncCallback
 void ChunkTable.get(Context options, java.util.Set<ChunkKey> keys, AsyncCallback<java.util.Collection<PackChunk.Members>> callback)
          Asynchronously load one or more chunks
 void ObjectIndexTable.get(Context options, java.util.Set<ObjectIndexKey> objects, AsyncCallback<java.util.Map<ObjectIndexKey,java.util.Collection<ObjectInfo>>> callback)
          Asynchronously locate one or more objects in the repository.
 void ChunkTable.getMeta(Context options, java.util.Set<ChunkKey> keys, AsyncCallback<java.util.Map<ChunkKey,GitStore.ChunkMeta>> callback)
          Asynchronously load one or more chunk meta fields.
 

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

Methods in org.eclipse.jgit.storage.dht.spi.cache with parameters of type AsyncCallback
 void CacheService.get(java.util.Collection<CacheKey> keys, AsyncCallback<java.util.Map<CacheKey,byte[]>> callback)
          Lookup one or more cache keys and return the results.
 void CacheChunkTable.get(Context options, java.util.Set<ChunkKey> keys, AsyncCallback<java.util.Collection<PackChunk.Members>> callback)
           
 void CacheObjectIndexTable.get(Context options, java.util.Set<ObjectIndexKey> objects, AsyncCallback<java.util.Map<ObjectIndexKey,java.util.Collection<ObjectInfo>>> callback)
           
 void CacheChunkTable.getMeta(Context options, java.util.Set<ChunkKey> keys, AsyncCallback<java.util.Map<ChunkKey,GitStore.ChunkMeta>> callback)
           
 void CacheService.modify(java.util.Collection<CacheService.Change> changes, AsyncCallback<java.lang.Void> callback)
          Modify one or more cache keys.
 

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

Methods in org.eclipse.jgit.storage.dht.spi.util that return AsyncCallback
protected
<T> AsyncCallback<T>
AbstractWriteBuffer.wrap(AsyncCallback<T> callback, int size)
          Wrap a callback to update the buffer.
 

Methods in org.eclipse.jgit.storage.dht.spi.util with parameters of type AsyncCallback
protected
<T> AsyncCallback<T>
AbstractWriteBuffer.wrap(AsyncCallback<T> callback, int size)
          Wrap a callback to update the buffer.
 



Copyright © 2011. All Rights Reserved.