public V get( long revision, K key ) throws IOException, KeyNotFoundException
{
// Check that we have a TransactionManager
if ( transactionManager == null )
{
throw new BTreeCreationException( "We don't have a transactionLManager" );
}
ReadTransaction<K, V> transaction = beginReadTransaction( revision );
if ( transaction == null )