Getting started Community Training Tutorials Documentation APIs, AI & Tools
import org.mule.sdk.api.runtime.SomeNewHelper;
public class MyOperations {
public void myOperation(String input, SomeNewHelper helper) {
if (helper != null) {
// Use the helper on runtimes that support it
helper.doSomething();
} else {
// Fallback for older runtimes
}
}
}



