Package com.sforce.async

Examples of com.sforce.async.BatchResult


      conn=getConnection();
      Iterator<Text> batchIterator = batches.iterator();
      String jobIdString = jobId.toString();
      jobId.set(jobIdString);
      while (batchIterator.hasNext()) {
        BatchResult result = conn.getBatchResult(jobIdString, batchIterator.next().toString());
        batchResultText.set(result.toString());
        logger.debug("Job Id " + jobIdString + " and Batch " + result);
        context.write(jobId, batchResultText);
      }     
       }
       catch(Exception e) {
View Full Code Here

TOP

Related Classes of com.sforce.async.BatchResult

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.