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

com.sksamuel.elastic4s.requests.common.RefreshPolicyHttpValue.scala Maven / Gradle / Ivy

There is a newer version: 8.15.4
Show newest version
package com.sksamuel.elastic4s.requests.common

object RefreshPolicyHttpValue {
  def apply(policy: RefreshPolicy): String = policy match {
    case RefreshPolicy.Immediate => "true"
    case RefreshPolicy.WaitFor => "wait_for"
    case RefreshPolicy.None => "false"
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy