cancelSearch static method

void cancelSearch(
  1. TaskHandler taskHandler
)

Cancel specific request identified by the task handler.

Parameters

  • IN taskHandler The task handler associated with the request to be canceled.

Returns

  • Associated TaskHandler for this operation if the search can be started otherwise null.

Implementation

static void cancelSearch(final TaskHandler taskHandler) {
  taskHandler as TaskHandlerImpl;
  staticMethod('SearchService', 'cancelSearch', args: taskHandler.id);
}