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

scalagen.actor.DeathItself.scala Maven / Gradle / Ivy

There is a newer version: 0.4.0
Show newest version
package scalagen.actor

import akka.actor.{PoisonPill, Actor}
import scalagen.message.Kill

/**
 * An actor that kills the specified [[Phenotype]].
 */
class DeathItself extends Actor {
  override def receive = {
    case Kill(phenotype) =>
      phenotype ! PoisonPill
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy