List of usage examples for io.netty.util ResourceLeakDetector subclass-usage
From source file org.apache.openwhisk.core.database.cosmosdb.RecordingLeakDetector.java
public class RecordingLeakDetector<T> extends ResourceLeakDetector<T> { private final Counter counter; public RecordingLeakDetector(Counter counter, Class<?> resourceType, int samplingInterval) { super(resourceType, samplingInterval); this.counter = counter;