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

com.github.edgar615.util.eventbus.DummyMetrics Maven / Gradle / Ivy

There is a newer version: 1.0.11
Show newest version
package com.github.edgar615.util.eventbus;

import java.util.Map;

/**
 * Created by Edgar on 2017/3/29.
 *
 * @author Edgar  Date 2017/3/29
 */
public class DummyMetrics implements Metrics {
  @Override
  public void sendEnqueue() {

  }

  @Override
  public void consumerStart() {

  }

  @Override
  public void consumerEnd(long duration) {

  }

  @Override
  public void sendStart() {

  }

  @Override
  public void sendEnd(boolean result, long duration) {

  }

  @Override
  public Map metrics() {
    return null;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy