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

pimpathon.runnable.scala Maven / Gradle / Ivy

The newest version!
package pimpathon


object runnable extends runnable

trait runnable {
  implicit def runnableFromThunk[Discarded](thunk: () ⇒ Discarded): Runnable = create(thunk())

  def create(action: ⇒ Unit): Runnable = new Runnable {
    override def run(): Unit = action
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy