All Downloads are FREE. Search and download functionalities are using the official Maven repository.

im.actor.server.cli.ActorCliService.scala Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package im.actor.server.cli

import akka.actor._

object ActorCliService {
  def start(system: ActorSystem): ActorRef =
    system.actorOf(Props(new ActorCliService), "cli")
}

final private class ActorCliService extends Actor with ActorLogging {
  protected val bots = context.actorOf(BotsCliService.props, "bots")
  protected val users = context.actorOf(UsersCliService.props, "users")
  protected val http = context.actorOf(HttpCliService.props, "http")

  def receive = Actor.emptyBehavior
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy