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

com.twitter.finagle.http.headers.HeaderMapVersionSpecific.scala Maven / Gradle / Ivy

package com.twitter.finagle.http

protected abstract class HeaderMapVersionSpecific {
  def set(name: String, header: String): this.type
  def removeHeader(name: String): this.type

  def -=(key: String): this.type = removeHeader(key)
  def +=(kv: (String, String)): this.type = set(kv._1, kv._2)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy