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

algoliasearch.config.Host.scala Maven / Gradle / Ivy

There is a newer version: 2.9.2
Show newest version
package algoliasearch.config

/** Represents an Algolia host.
  *
  * @param url
  *   Host url
  * @param callTypes
  *   Whether this host should be used for read and/or write requests.
  * @param scheme
  *   Host protocol (i.e. `http`, `https`)
  * @param port
  *   Host port
  */
case class Host(url: String, callTypes: Set[CallType], scheme: String = "https", port: Option[Int] = None)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy