@@ -269,7 +269,7 @@ public int getRemainingCapacity() {
269269 * events that were discarded.
270270 *
271271 * @return total number of events submitted to append()
272- * @since 1.5.16
272+ * @since 1.5.27
273273 */
274274 public long getTotalAppendedCount () {
275275 return totalAppendedCount .get ();
@@ -281,7 +281,7 @@ public long getTotalAppendedCount() {
281281 * was deemed discardable by the {@link #isDiscardable(Object)} method.
282282 *
283283 * @return number of events discarded due to threshold policy
284- * @since 1.5.16
284+ * @since 1.5.27
285285 */
286286 public long getDiscardedByThresholdCount () {
287287 return discardedByThresholdCount .get ();
@@ -293,7 +293,7 @@ public long getDiscardedByThresholdCount() {
293293 * when the queue cannot accept new events, they are dropped immediately.
294294 *
295295 * @return number of events discarded due to full queue in non-blocking mode
296- * @since 1.5.16
296+ * @since 1.5.27
297297 */
298298 public long getDiscardedByQueueFullCount () {
299299 return discardedByQueueFullCount .get ();
@@ -305,7 +305,7 @@ public long getDiscardedByQueueFullCount() {
305305 * {@link #getDiscardedByQueueFullCount()}.
306306 *
307307 * @return total number of discarded events
308- * @since 1.5.16
308+ * @since 1.5.27
309309 */
310310 public long getTotalDiscardedCount () {
311311 return discardedByThresholdCount .get () + discardedByQueueFullCount .get ();
@@ -315,7 +315,7 @@ public long getTotalDiscardedCount() {
315315 * Resets all metrics counters to zero. This can be useful for testing or
316316 * when you want to start fresh metrics collection at a specific point in time.
317317 *
318- * @since 1.5.16
318+ * @since 1.5.27
319319 */
320320 public void resetMetrics () {
321321 totalAppendedCount .set (0 );
0 commit comments