All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.netflix.spectator.api.AbstractMeter Maven / Gradle / Ivy

There is a newer version: 1.7.21
Show newest version
/**
 * Copyright 2015 Netflix, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.netflix.spectator.api;

import java.lang.ref.WeakReference;

/**
 * Helper base class for meters that maintains a weak reference to the object being measured.
 * Meters that are based on polling rather than activity need some other way to define the
 * lifespan and in this case that is if the reference still exists. Basing this off a weak
 * reference means there doesn't need to be an explicit de-registration and registering to
 * collect insight will not prevent garbage collection of the underlying object.
 */
public abstract class AbstractMeter implements Meter {
  /** Clock to use for getting measurement timestamps. */
  protected final Clock clock;

  /** Identifier for the meter. */
  protected final Id id;

  /** Reference to the underlying object used to compute the measurements. */
  protected final WeakReference ref;

  /**
   * Create a new instance.
   *
   * @param clock
   *     Clock to use for getting measurement timestamps. Typically should be the clock used by
   *     the registry (see {@link Registry#clock()}).
   * @param id
   *     Identifier for the meter.
   * @param obj
   *     Reference to the underlying object used to compute the measurements.
   */
  public AbstractMeter(Clock clock, Id id, T obj) {
    this.clock = clock;
    this.id = id;
    this.ref = new WeakReference<>(obj);
  }

  @Override public Id id() {
    return this.id;
  }

  @Override public boolean hasExpired() {
    return this.ref.get() == null;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy