std::string ScanControllerImpl::DebugString()

in src/hbase/client/async-scan-rpc-retrying-caller.cc [114:125]


std::string ScanControllerImpl::DebugString(ScanResumerState state) {
  switch (state) {
    case ScanResumerState::kInitialized:
      return "kInitialized";
    case ScanResumerState::kSuspended:
      return "kSuspended";
    case ScanResumerState::kResumed:
      return "kResumed";
    default:
      return "UNKNOWN";
  }
}