OutputRecord.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:2k
源码类别:

网格计算

开发平台:

Java

  1. /*
  2.  * OutputRecord.java
  3.  *
  4.  * Licensed to the Apache Software Foundation (ASF) under one
  5.  * or more contributor license agreements.  See the NOTICE file
  6.  * distributed with this work for additional information
  7.  * regarding copyright ownership.  The ASF licenses this file
  8.  * to you under the Apache License, Version 2.0 (the
  9.  * "License"); you may not use this file except in compliance
  10.  * with the License.  You may obtain a copy of the License at
  11.  *
  12.  *     http://www.apache.org/licenses/LICENSE-2.0
  13.  *
  14.  * Unless required by applicable law or agreed to in writing, software
  15.  * distributed under the License is distributed on an "AS IS" BASIS,
  16.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  17.  * See the License for the specific language governing permissions and
  18.  * limitations under the License.
  19.  */
  20. package org.apache.hadoop.metrics.spi;
  21. import java.util.Collections;
  22. import java.util.Set;
  23. import org.apache.hadoop.metrics.spi.AbstractMetricsContext.MetricMap;
  24. import org.apache.hadoop.metrics.spi.AbstractMetricsContext.TagMap;
  25. /**
  26.  * Represents a record of metric data to be sent to a metrics system.
  27.  */
  28. public class OutputRecord {
  29.     
  30.   private TagMap tagMap;
  31.   private MetricMap metricMap;
  32.     
  33.   /** Creates a new instance of OutputRecord */
  34.   OutputRecord(TagMap tagMap, MetricMap metricMap) {
  35.     this.tagMap = tagMap;
  36.     this.metricMap = metricMap;
  37.   }
  38.     
  39.   /**
  40.    * Returns the set of tag names
  41.    */
  42.   public Set<String> getTagNames() {
  43.     return Collections.unmodifiableSet(tagMap.keySet());
  44.   }
  45.     
  46.   /**
  47.    * Returns a tag object which is can be a String, Integer, Short or Byte.
  48.    *
  49.    * @return the tag value, or null if there is no such tag
  50.    */
  51.   public Object getTag(String name) {
  52.     return tagMap.get(name);
  53.   }
  54.     
  55.   /**
  56.    * Returns the set of metric names.
  57.    */
  58.   public Set<String> getMetricNames() {
  59.     return Collections.unmodifiableSet(metricMap.keySet());
  60.   }
  61.     
  62.   /**
  63.    * Returns the metric object which can be a Float, Integer, Short or Byte.
  64.    */
  65.   public Number getMetric(String name) {
  66.     return metricMap.get(name);
  67.   }
  68.     
  69. }