<!--:en-->Writing a Schedulable Batch Apex in Salesforce<!--:--><!--:zh-->编写一个Salesforce中可计划执行的Batch Apex<!--:--><!--:ja-->スケージュール可能なApex一括処理バッチの実装<!--:-->
To use batch Apex, you have to create an Apex class that implements interface Database.Batchable in Salesforce, like the following sample code: Execute batch Then you can use Database.executebatch method to execute it. Schedule Apex job To schedule your batch Apex to run at regular intervals, you also need an Apex class that implements interface Schedulable, like the following sample code:…
View On WordPress















