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

io.grpc.Metadata.scala Maven / Gradle / Ivy

There is a newer version: 0.7.0
Show newest version
package io.grpc

final class Metadata {
  def get[T](key: Metadata.Key[T]): T = ???

  def put[T](key: Metadata.Key[T], value: T): Unit = ???

  def remove[T](key: Metadata.Key[T], value: T): Boolean = ???
}

object Metadata {
  final class Key[T]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy