org.apache.pekko.Main.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pekko-actor_2.13 Show documentation
Show all versions of pekko-actor_2.13 Show documentation
Apache Pekko is a toolkit for building highly concurrent, distributed, and resilient message-driven applications for Java and Scala.
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* license agreements; and to You under the Apache License, version 2.0:
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* This file is part of the Apache Pekko project, which was derived from Akka.
*/
/*
* Copyright (C) 2009-2022 Lightbend Inc.
*/
package org.apache.pekko
import scala.util.control.NonFatal
import org.apache.pekko
import pekko.actor.Actor
import pekko.actor.ActorLogging
import pekko.actor.ActorRef
import pekko.actor.ActorSystem
import pekko.actor.ExtendedActorSystem
import pekko.actor.Props
import pekko.actor.Terminated
/**
* Main class to start an [[pekko.actor.ActorSystem]] with one
* top level application supervisor actor. It will shutdown
* the actor system when the top level actor is terminated.
*/
@deprecated("Implement your own main class instead, from which you start the ActorSystem and actors.", "Akka 2.6.0")
object Main {
/**
* @param args one argument: the class of the application supervisor actor
*/
def main(args: Array[String]): Unit = {
if (args.length != 1) {
println("you need to provide exactly one argument: the class of the application supervisor actor")
} else {
val system = ActorSystem("Main")
try {
val appClass = system.asInstanceOf[ExtendedActorSystem].dynamicAccess.getClassFor[Actor](args(0)).get
val app = system.actorOf(Props(appClass), "app")
system.actorOf(Props(classOf[Terminator], app), "app-terminator")
} catch {
case NonFatal(e) => system.terminate(); throw e
}
}
}
class Terminator(app: ActorRef) extends Actor with ActorLogging {
context.watch(app)
def receive = {
case Terminated(_) =>
log.info("application supervisor has terminated, shutting down")
context.system.terminate()
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy