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

In which mode do future method execute? with or without sharing?
Consider below situation.
public without sharing class Class3 {
@future
public static void meth1() {}
}
public with sharing class Class2 {
Class3.meth1();
}
in which mode meth1() of Class3 will execute?
with sharing or without sharing?
Without sharing. Because that's the place where actual definition of the resides.