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

akka.io.IO.scala Maven / Gradle / Ivy

/*
 * Copyright (C) 2009-2020 Lightbend Inc. 
 */

package akka.io

import akka.actor._

/**
 * Entry point to Akka’s IO layer.
 *
 * @see the Akka online documentation
 */
object IO {

  trait Extension extends akka.actor.Extension {
    def manager: ActorRef
  }

  /**
   * Scala API: obtain a reference to the manager actor for the given IO extension,
   * for example [[Tcp]] or [[Udp]].
   *
   * For the Java API please refer to the individual extensions directly.
   */
  def apply[T <: Extension](key: ExtensionId[T])(implicit system: ActorSystem): ActorRef = key(system).manager

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy