@SuppressWarnings("boxing")
public Double get (long timeout, TimeUnit unit)
throws InterruptedException, ExecutionException, TimeoutException
{
BulkResponse bulkResp = (BulkResponse) pendingRequest.get(timeout, unit);
if(bulkResp.getBulkData() != null)
return Convert.toDouble(bulkResp.getBulkData());
return null;
}