Salesforce : Annotations

Annotations

An Apex annotation modifies the way that a method or class is used, similar to annotations in Java.

Annotations are defined with an initial @ symbol, followed by the appropriate keyword. To add an annotation to a method, specify it immediately before the method or class definition. For example:

global class MyClass {
@future
Public static void myMethod(String a){
//long-running Apex code
}
}

Happy Sharing...


Comments

Popular posts from this blog

Salesforce LWC : Compact Layout on Hover

Salesforce LWC With Third Party JS : D3

Communications between Lightning Components : Salesforce