io.finch.internal.DummyExecutionContext.scala Maven / Gradle / Ivy
package io.finch.internal
import scala.concurrent.ExecutionContext
object DummyExecutionContext extends ExecutionContext {
def execute(runnable: Runnable): Unit = runnable.run()
def reportFailure(cause: Throwable): Unit = throw new NotImplementedError()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy