0

是 apex 中的批处理类,类似于 java 中的线程。一个区别是可以安排批处理课程,是否还有其他区别请告知区别..

4

1 回答 1

1

Batch Apex is not a form of threading. You are not going to be add another thread of execution to a class or trigger with Batch Apex.

What you will be able to do with Batch Apex is write code that can perform operations on all (up to 50 million) records of a certain type. Limitations are similar to other Apex code with a larger heap size and more script statements allowable. You can only have five batch jobs running at once and cannot generate PDFs from batch jobs.

The only similarity between threading and batch apex is that batch apex is able to run asynchronously to other code in your org.

于 2012-04-24T16:29:36.380 回答