public void basicQos(int prefetchSize, int prefetchCount, boolean global) throws IOException {
    if (global) {
      this.prefetchCountGlobal = prefetchCount;
    } else {
      this.prefetchCountConsumer = prefetchCount;
    }

    delegate.basicQos(prefetchSize, prefetchCount, global);
  }