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

io.taig.communicator.package.scala Maven / Gradle / Ivy

There is a newer version: 3.0.0-RC12
Show newest version
package io.taig

import scala.language.implicitConversions

package object communicator {
    implicit private[communicator] def function0ToRunnable( f: () ⇒ Unit ): Runnable = {
        new Runnable {
            override def run() = f()
        }
    }

    type OkHttpRequest = okhttp3.Request

    object OkHttpRequest {
        type Builder = okhttp3.Request.Builder
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy