Newer Version Available
FunctionCallback Interface
Represents the callback Salesforce calls when an asynchronous, queued
Function invocation has completed.
Namespace
Usage
When invoking Functions asynchronously via Function.invoke(payload, callback), you provide your own class that implements FunctionCallback.
FunctionCallback Methods
The following are methods for FunctionCallback.
handleResponse(var1)
Signature
public void handleResponse(functions.FunctionInvocation var1)
Parameters
- var1
- Type: functions.FunctionInvocation
- The result parameter contains JSON response information and error information.
Return Value
Type: void