Package org.thrudb.thrudoc

Examples of org.thrudb.thrudoc.InvalidBucketException


  }

  public byte[] retrieve_at(String bucket, String key, int pos)
      throws ThrudocException, InvalidBucketException, TException {
    if(!isValidBucket(bucket))
      throw new InvalidBucketException();
   
    return bucketMap.get(bucket).retrieve_at(key, pos);
  }
View Full Code Here


    return bucketMap.get(bucket).retrieve_at(key, pos);
  }

  public List<String> scan(String bucket, String seed, int count) throws InvalidBucketException, TException {
    if(!isValidBucket(bucket))
      throw new InvalidBucketException();
   
   
    return bucketMap.get(bucket).scan(seed,count)
  }
View Full Code Here

TOP

Related Classes of org.thrudb.thrudoc.InvalidBucketException

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.