reject method

  1. @override
Future<void> reject()
override

Should be invoked when results of compilation are rejected by the client.

Either accept or reject should be called after every compile call.

The result of this call must be awaited before a new compile can be done.

Implementation

@override
Future<void> reject() async {
  await _frontendServerClient.reject();
  _lastResult = null;
}