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

Using @future annotation with the SandboxPostCopy interface
I am trying to setup a method that will be auto run when the sandbox is refreshed the problem is that it is an aync class and I am getting
'Unsupported parameter type SandboxContext' since @future methods must be static. Does anyone know of a way to setup async SandboxPostCopy methods?
global class FixSandboxUsers implements SandboxPostCopy {
@future
global static void runApexClass(SandboxContext context){
'Unsupported parameter type SandboxContext' since @future methods must be static. Does anyone know of a way to setup async SandboxPostCopy methods?
global class FixSandboxUsers implements SandboxPostCopy {
@future
global static void runApexClass(SandboxContext context){
Regards