diegomez17 commented on code in PR #17823:
URL: https://github.com/apache/beam/pull/17823#discussion_r917069156


##########
sdks/java/io/google-cloud-platform/src/main/java/org/apache/beam/sdk/io/gcp/bigtable/BigtableIO.java:
##########
@@ -1431,4 +1484,30 @@ static void validateTableExists(BigtableConfig config, 
PipelineOptions options)
       }
     }
   }
+
+  interface ResourceStatsSupplier {
+    ResourceLimiterStats getStats();
+  }
+
+  private static class ResourceStatsSupplierImpl implements 
ResourceStatsSupplier, Serializable {
+
+    private final BigtableConfig bigtableConfig;
+
+    ResourceStatsSupplierImpl(BigtableConfig bigtableConfig) {
+      this.bigtableConfig = bigtableConfig;
+    }
+
+    @Override
+    public ResourceLimiterStats getStats() {

Review Comment:
   Due to extending the interface that is inherently public, the method has to 
be too. 



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to