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

org.gfccollective.concurrent.ExecutorService.scala Maven / Gradle / Ivy

The newest version!
package org.gfccollective.concurrent

import java.util.concurrent.{Future, ExecutorService => JExecutorService}

/**
 * Scala adaptations of j.u.c.ExecutorService.
 */
trait ExecutorService extends JExecutorService {
  def execute(f: => Unit): Unit
  def submit[T](f: => T): Future[T]
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy