You need to sign in to do that
Don't have an account?

Method not implemented for Queueable Apex
Hello,
I want implement Queueable Apex on Sandbox (Winter 15) and I follow the example on this article : https://www.salesforce.com/us/developer/docs/apexcode/Content/apex_queueing_jobs.htm but when i launch test class, i have this error : "This method is not implemented"
And, in Debug log, i have : FATAL_ERROR Internal Salesforce.com Error
Code apex :
On my Dev Org, this code works.
Someone already encountered this problem? Thank you for your help
I want implement Queueable Apex on Sandbox (Winter 15) and I follow the example on this article : https://www.salesforce.com/us/developer/docs/apexcode/Content/apex_queueing_jobs.htm but when i launch test class, i have this error : "This method is not implemented"
And, in Debug log, i have : FATAL_ERROR Internal Salesforce.com Error
Code apex :
public class AsyncExecutionExample implements queueable { public void execute(queueablecontext context) { system.debug('test'); } }
On my Dev Org, this code works.
Someone already encountered this problem? Thank you for your help
My problem is solved since yesterday, i can execute Queueable Apex classes.
However, i don't know why.
Salesforce correct the problem on the CS8 sandbox that was the problem.
All Answers
PS: if this answers your question then hit Like and mark it as solution
My problem is solved since yesterday, i can execute Queueable Apex classes.
However, i don't know why.
Salesforce correct the problem on the CS8 sandbox that was the problem.