onRestart method

  1. @override
Future<bool> onRestart()
inherited

Callback when this executor is to be restarted. Returns true if the executor is ready to restart (default), false otherwise.

Subclasses should override this, to implement any configuration to be done before restarting.

Implementation

@override
Future<bool> onRestart() async => true;