From 81b673bf6d32fa2de483e51a494b9bee66958dbb Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Wed, 28 Aug 2024 12:58:07 +0100 Subject: [PATCH] add since marker in Timers.scala --- actor/src/main/scala/org/apache/pekko/actor/Timers.scala | 2 ++ 1 file changed, 2 insertions(+) diff --git a/actor/src/main/scala/org/apache/pekko/actor/Timers.scala b/actor/src/main/scala/org/apache/pekko/actor/Timers.scala index 33649c45b19..7393eb097a1 100644 --- a/actor/src/main/scala/org/apache/pekko/actor/Timers.scala +++ b/actor/src/main/scala/org/apache/pekko/actor/Timers.scala @@ -88,6 +88,8 @@ abstract class AbstractActorWithTimers extends AbstractActor with Timers { * * Timers are bound to the lifecycle of the actor that owns it, * and thus are cancelled automatically when it is restarted or stopped. + * + * @since 1.1.0 */ abstract class UntypedAbstractActorWithTimers extends UntypedAbstractActor with Timers {