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

com.twitter.finagle.util.LoadService.scala Maven / Gradle / Ivy

There is a newer version: 21.2.0
Show newest version
package com.twitter.finagle.util

import scala.reflect.ClassTag

/**
 * Load a singleton class in the manner of [[java.util.ServiceLoader]]. It is
 * more resilient to varying Java packaging configurations than ServiceLoader.
 *
 * @see `com.twitter.app.LoadService` in util-app
 */
object LoadService {

  def apply[T: ClassTag](): Seq[T] =
    com.twitter.app.LoadService()

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy