Examples of InMemoryMetricsTableDefinition


Examples of co.cask.cdap.data2.dataset2.lib.table.inmemory.InMemoryMetricsTableDefinition

* Registers in-memory implementations of the metrics system datasets
*/
public class InMemoryMetricsTableModule implements DatasetModule {
  @Override
  public void register(DatasetDefinitionRegistry registry) {
    registry.add(new InMemoryMetricsTableDefinition(InMemoryMetricsTable.class.getName()));
    registry.add(new InMemoryMetricsTableDefinition(MetricsTable.class.getName()));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.