36373839404142
public WeightedQueue(String key, int weight) { this.key = key; this.weight = weight; this.queue = new SynchronousQueue<Entry>(true); this.metric = new LatencyMetrics("org.apache.cassandra.metrics", "scheduler", "WeightedQueue", key); }
public WeightedQueue(String key, int weight) { this.key = key; this.weight = weight; this.queue = new SynchronousQueue<Entry>(true); this.metric = new LatencyMetrics("scheduler", "WeightedQueue", key); }