Salesforce batch Database.Stateful方法

在salesforce的后台计算当中,我们经常会使用batch,但是,我们通常大量的情况下面,我们会使用batch当中的getquerylocator方法,来查询大数据量的数据集,然后,你这个数据集交给execute方法去处理,比如,insert,delete,update.。但是,我们通常,还有一部分工作,有的时候,我们只是希望,前面的batch把query出来的大数据集做以简单的运算,然后传值给后面的batch来继续处理,并且在execute中,我们没有任何的insert,delete,update式行为。这个时候,我们就会遇到对像为空的情况。那么,在这种情况下面,我们只需要让batch 多实现 一个Database.Stateful方法就可以做到了 


下面程序,当batch运行完以后,你的Summary在finish当中为0,


global class SummarizeAccountTotal implements 
    Database.Batchable{

   global final String Query;
   global integer Summary;
  
   global SummarizeAccountTotal(String q){Query=q;
     Summary = 0;
   }

   global Database.QueryLocator start(Database.BatchableContext BC){
      return Database.getQueryLocator(query);
   }
   
   global void execute(
                Database.BatchableContext BC, 
                List scope){
		Summary = 123;
		
   }

global void finish(Database.BatchableContext BC){
        System.debug(Summary);
   }
}



下面程序,在Finish程序当中,debug结果为123


global class SummarizeAccountTotal implements 
    Database.Batchable, Database.Stateful{

   global final String Query;
   global integer Summary;
  
   global SummarizeAccountTotal(String q){Query=q;
     Summary = 0;
   }

   global Database.QueryLocator start(Database.BatchableContext BC){
      return Database.getQueryLocator(query);
   }
   
   global void execute(
                Database.BatchableContext BC, 
                List scope){
		Summary = 123;
		
   }

global void finish(Database.BatchableContext BC){
        System.debug(Summary);
   }
}


你可能感兴趣的:(salesforce,开发)