[ https://issues.apache.org/jira/browse/FLINK-10349?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16618827#comment-16618827 ]
ASF GitHub Bot commented on FLINK-10349: ---------------------------------------- azagrebin commented on a change in pull request #6701: [FLINK-10349] Unify stopActor utils URL: https://github.com/apache/flink/pull/6701#discussion_r218366466 ########## File path: flink-runtime/src/main/java/org/apache/flink/runtime/akka/ActorUtils.java ########## @@ -87,12 +89,52 @@ return FutureUtils.completeAll(terminationFutures); } - public static void stopActor(AkkaActorGateway akkaActorGateway) { - stopActor(akkaActorGateway.actor()); - } + // ---------- Utils to stop an actor ---------- + + private static final FiniteDuration DEFAULT_TIMEOUT = FiniteDuration.apply(1, TimeUnit.MINUTES); public static void stopActor(ActorRef actorRef) { - actorRef.tell(PoisonPill.getInstance(), ActorRef.noSender()); + if (actorRef != null) { + actorRef.tell(Kill.getInstance(), ActorRef.noSender()); + } + } + + public static void stopActor(ActorGateway actorGateway) { + if (actorGateway != null) { + stopActor(actorGateway.actor()); + } + } + + public static void stopActorGracefully(ActorRef actorRef) { + stopActorsGracefully(actorRef); + } + + public static void stopActorGracefully(ActorGateway actorGateway) { + stopActorGracefully(actorGateway.actor()); + } + + public static void stopActorsGracefully(@Nonnull ActorRef... actorRefs) { Review comment: imho, also doc here ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org > Unify stopActor utils > --------------------- > > Key: FLINK-10349 > URL: https://issues.apache.org/jira/browse/FLINK-10349 > Project: Flink > Issue Type: Improvement > Components: Core > Affects Versions: 1.7.0 > Reporter: 陈梓立 > Assignee: 陈梓立 > Priority: Major > Labels: pull-request-available > Fix For: 1.7.0 > > -- This message was sent by Atlassian JIRA (v7.6.3#76005)