Getting started Community Training Tutorials Documentation APIs, AI & Tools
@OnSuccess
public void onSuccess(@Content String response, SourceCompletionCallback callback) {
asyncResponder.sendResponse(response, new ResponderCallback() {
void onSuccess() {
callback.success();
}
void onFailure(Throwable t) {
callback.error(t);
}
};)
}



