getWorkerCurrentRunConfig method

  1. @override
Future<WorkerCurrentRunConfig> getWorkerCurrentRunConfig(
  1. ServiceCall call,
  2. Empty request
)

Implementation

@override
Future<WorkerCurrentRunConfig> getWorkerCurrentRunConfig(grpc.ServiceCall call, Empty request) async {
  final ans = _workerSuperRunStore.calcCurrentRunConfig();
  Log.d(_kTag,
      'getWorkerCurrentRunConfig ans=$ans currSuperRunController=${_workerSuperRunStore.currSuperRunController}');
  return ans;
}