提交 92d12e59 编写于 作者: A allegraharris

removing <h3>

上级 a7eb4b13
......@@ -24,7 +24,7 @@ import java.util.zip.Inflater;
import static java.nio.ByteOrder.BIG_ENDIAN;
/**
* <h3>An abstract base class for integer values High Dynamic Range (HDR) Histograms</h3>
* An abstract base class for integer values High Dynamic Range (HDR) Histograms
* <p>
* AbstractHistogram supports the recording and analyzing sampled data value counts across a configurable integer value
* range with configurable value precision within the range. Value precision is expressed as the number of significant
......
......@@ -14,7 +14,7 @@ import java.util.concurrent.atomic.*;
import java.util.zip.DataFormatException;
/**
* <h3>A High Dynamic Range (HDR) Histogram using atomic <b><code>long</code></b> count type </h3>
* A High Dynamic Range (HDR) Histogram using atomic <b><code>long</code></b> count type
* An AtomicHistogram guarantees lossless recording of values into the histogram even when the
* histogram is updated by multiple threads. It is important to note though that this lossless
* recording capability is the only thread-safe behavior provided by AtomicHistogram, and that it
......
......@@ -15,7 +15,7 @@ import java.util.concurrent.atomic.AtomicLongFieldUpdater;
import java.util.zip.DataFormatException;
/**
* <h3>An integer values High Dynamic Range (HDR) Histogram that supports safe concurrent recording operations.</h3>
* An integer values High Dynamic Range (HDR) Histogram that supports safe concurrent recording operations.
* A ConcurrentHistogram guarantees lossless recording of values into the histogram even when the
* histogram is updated by multiple threads, and supports auto-resize and shift operations that may
* result from or occur concurrently with other recording operations.
......
......@@ -16,7 +16,7 @@ import java.util.zip.DataFormatException;
import java.util.zip.Deflater;
/**
* <h3>A floating point values High Dynamic Range (HDR) Histogram</h3>
* A floating point values High Dynamic Range (HDR) Histogram
* <p>
* It is important to note that {@link DoubleHistogram} is not thread-safe, and does not support safe concurrent
* recording by multiple threads. If concurrent operation is required, consider using
......
......@@ -14,7 +14,7 @@ import java.util.Arrays;
import java.util.zip.DataFormatException;
/**
* <h3>A High Dynamic Range (HDR) Histogram</h3>
* A High Dynamic Range (HDR) Histogram
* <p>
* {@link Histogram} supports the recording and analyzing sampled data value counts across a configurable integer value
* range with configurable value precision within the range. Value precision is expressed as the number of significant
......
......@@ -23,7 +23,7 @@ import java.util.zip.DataFormatException;
* HdrHistogram of the measured reaction time behavior for any arbitrary
* time range within the log, by adding [only] the relevant interval
* histograms.
* <h3>Histogram log format:</h3>
* Histogram log format:
* A histogram log file consists of text lines. Lines beginning with
* the "#" character are optional and treated as comments. Lines
* containing the legend (starting with "Timestamp") are also optional
......
......@@ -22,7 +22,7 @@ public interface ValueRecorder {
/**
* Record a value.
* <p>
* To compensate for the loss of sampled values when a recorded value is larger than the expected
* To compensate for the loss of sampled values w hen a recorded value is larger than the expected
* interval between value samples, will auto-generate an additional series of decreasingly-smaller
* (down to the expectedIntervalBetweenValueSamples) value records.
* <p>
......
......@@ -29,7 +29,7 @@ import java.util.concurrent.locks.ReentrantLock;
* "readers", and "readers" are only blocked by "writers" whose critical section
* was entered before the reader's
* {@link WriterReaderPhaser#flipPhase()} attempt.
* <h3>Assumptions and Guarantees</h3>
* Assumptions and Guarantees
* <p>
* When used to protect an actively recording data structure, the assumptions on
* how readers and writers act are:
......@@ -78,7 +78,7 @@ import java.util.concurrent.locks.ReentrantLock;
* readers that are holding the readerLock.</li>
* </ol>
*
* <h3>Example use</h3>
* Example use
* Imagine a simple use case where a histogram (which is basically a large set of
* rapidly updated counters) is being modified by writers, and a reader needs to gain
* access to stable interval samples of the histogram for reporting or other analysis
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册