Package org.eclipse.jgit.storage.dht.spi.memory.MemTable

Examples of org.eclipse.jgit.storage.dht.spi.memory.MemTable.Cell


  private final ColumnMatcher colId = new ColumnMatcher("id");

  public RepositoryKey get(RepositoryName name) throws DhtException,
      TimeoutException {
    Cell cell = table.get(name.asBytes(), colId.name());
    if (cell == null)
      return null;
    return RepositoryKey.fromBytes(cell.getValue());
  }
View Full Code Here

TOP

Related Classes of org.eclipse.jgit.storage.dht.spi.memory.MemTable.Cell

Copyright © 2018 www.massapicom. 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.