c

akka.grpc.internal

HttpMessageMetadataImpl

class HttpMessageMetadataImpl extends HeaderMetadataImpl

This class wraps an HttpMessage with the Metadata interface.

Source
MetadataImpl.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HttpMessageMetadataImpl
  2. HeaderMetadataImpl
  3. Metadata
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new HttpMessageMetadataImpl(message: HttpMessage)

    message

    The HTTP message to wrap.

Value Members

  1. def asList: List[(String, MetadataEntry)]

    returns

    A list of (key, MetadataEntry) tuples.

    Definition Classes
    HeaderMetadataImplMetadata
  2. def asMap: Map[String, List[MetadataEntry]]

    returns

    The metadata as a map.

    Definition Classes
    HeaderMetadataImplMetadata
  3. def attribute[T](key: AttributeKey[T]): Option[T]

    Get an attribute from the underlying akka-http message associated with this metadata.

    Get an attribute from the underlying akka-http message associated with this metadata.

    Will return None if this metadata is not associated with an akka-http request or response, for example, if using the netty client support.

    Definition Classes
    HttpMessageMetadataImplHeaderMetadataImplMetadata
  4. def getBinary(key: String): Option[ByteString]

    returns

    The binary header value for key if one exists, if the same key has multiple values the last occurrence that is a text key is used.

    Definition Classes
    HeaderMetadataImplMetadata
  5. def getText(key: String): Option[String]

    returns

    The text header value for key if one exists, if the same key has multiple values the last occurrence that is a text key is used.

    Definition Classes
    HeaderMetadataImplMetadata
  6. def toString(): String
    Definition Classes
    HeaderMetadataImpl → AnyRef → Any