Example #1
0
 /**
  * Construct a new histogram by decoding it from a ByteBuffer.
  * @param buffer The buffer to decode from
  * @param minBarForHighestTrackableValue Force highestTrackableValue to be set at least this high
  * @return The newly constructed histogram
  */
 public static Histogram decodeFromByteBuffer(/*final*/ ByteBuffer buffer,
                                              /*final*/ long minBarForHighestTrackableValue)
 {
     return((Histogram)AbstractHistogram.decodeFromByteBuffer(buffer, typeof(Histogram), minBarForHighestTrackableValue));
 }