Package org.eclipse.jgit.storage.dht

Examples of org.eclipse.jgit.storage.dht.CachedPackKey.asBytes()


  public void put(RepositoryKey repo, CachedPackInfo info, WriteBuffer buffer)
      throws DhtException {
    CachedPackKey key = CachedPackKey.fromInfo(info);
    table.put(repo.asBytes(),
        colCachedPack.append(key.asBytes()),
        info.toByteArray());
  }

  public void remove(RepositoryKey repo, CachedPackKey key, WriteBuffer buffer)
      throws DhtException {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.