AFIsolateListenerQuery<TMessage> constructor

AFIsolateListenerQuery<TMessage>({
  1. AFID? id,
  2. AFOnResponseDelegate<TMessage>? onSuccess,
  3. AFOnErrorDelegate? onError,
  4. AFPreExecuteResponseDelegate<TMessage>? onPreExecuteResponse,
})

Implementation

AFIsolateListenerQuery({
  AFID? id,
  AFOnResponseDelegate<TMessage>? onSuccess,
  AFOnErrorDelegate? onError,
  AFPreExecuteResponseDelegate<TMessage>? onPreExecuteResponse
}): super(
  id: id,
  onSuccess: onSuccess,
  onError: onError,
  onPreExecuteResponse: onPreExecuteResponse,
);