From 5a3f6f186362b9ed0ad402d74f5e8fecc033cc4d Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Wed, 28 Aug 2024 13:51:54 +0100 Subject: [PATCH] add since marker in Timers.scala (#1457) --- 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 {