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

eventstore.util.ActorCloseable.scala Maven / Gradle / Ivy

The newest version!
package eventstore.util

import java.io.Closeable
import akka.actor.{ PoisonPill, ActorRef }

case class ActorCloseable(actor: ActorRef) extends Closeable {
  def close() = {
    actor ! PoisonPill
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy