run method

Future<void> run()

Implementation

Future<void> run() async {
  while (true) {
    if (null == await tryCatch(() => bind())) {
      soap = null;
    }
    await sleep(duration);
  }
}