Salesforce Developer Future Methods Limits

salesforce-developer-future-methods

// Salesforce - Developer - Future Methods - Limits:

Even though Apex written within an asynchronous method gets its own independent 
set of higher governor limits, it still has governor limits.  Additionally, no 
more than ten @future methods can be invoked within a single Apex transaction.  
Here is a list of governor limits specific to the @future annotation:

1. No more than 10 methods per Apex invocation.

2. No more than 200 method calls per Salesforce license per 24 hours.

3. The parameters specified must be primitive data types, array of primitive 
   data types, or collections of primitive data types.  Methods with the @future 
   annotation cannot take sObjects or objects as arguments.

4. Methods with the future annotation cannot be used in Visualforce controllers 
   in either getMethodName or setMethodName methods, and cannot be used inside 
   the constructor.
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License