Trait

com.twitter.finagle.thrift.thriftscala.BinaryAnnotation

Proxy

Related Doc: package BinaryAnnotation

Permalink

trait Proxy extends BinaryAnnotation

This Proxy trait allows you to extend the BinaryAnnotation trait with additional state or behavior and implement the read-only methods from BinaryAnnotation using an underlying instance.

Linear Supertypes
BinaryAnnotation, Serializable, ValidatingThriftStruct[BinaryAnnotation], HasThriftStructCodec3[BinaryAnnotation], Product4[String, ByteBuffer, AnnotationType, Option[Endpoint]], Product, Equals, ThriftStruct, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Proxy
  2. BinaryAnnotation
  3. Serializable
  4. ValidatingThriftStruct
  5. HasThriftStructCodec3
  6. Product4
  7. Product
  8. Equals
  9. ThriftStruct
  10. AnyRef
  11. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def _underlying_BinaryAnnotation: BinaryAnnotation

    Permalink
    Attributes
    protected

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def _1: String

    Permalink
    Definition Classes
    BinaryAnnotation → Product4
  5. def _2: ByteBuffer

    Permalink
    Definition Classes
    BinaryAnnotation → Product4
  6. def _3: AnnotationType

    Permalink
    Definition Classes
    BinaryAnnotation → Product4
  7. def _4: Option[Endpoint]

    Permalink
    Definition Classes
    BinaryAnnotation → Product4
  8. def _codec: ValidatingThriftStructCodec3[BinaryAnnotation]

    Permalink
    Definition Classes
    BinaryAnnotation → ValidatingThriftStruct → HasThriftStructCodec3
  9. def _passthroughFields: Map[Short, TFieldBlob]

    Permalink
    Definition Classes
    ProxyBinaryAnnotation
  10. def annotationType: AnnotationType

    Permalink
    Definition Classes
    ProxyBinaryAnnotation
  11. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  12. def canEqual(other: Any): Boolean

    Permalink
    Definition Classes
    BinaryAnnotation → Equals
  13. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. def copy(key: String = this.key, value: ByteBuffer = this.value, annotationType: AnnotationType = this.annotationType, host: Option[Endpoint] = this.host, _passthroughFields: Map[Short, TFieldBlob] = this._passthroughFields): BinaryAnnotation

    Permalink
    Definition Classes
    BinaryAnnotation
  15. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. def equals(other: Any): Boolean

    Permalink
    Definition Classes
    BinaryAnnotation → Equals → AnyRef → Any
  17. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  19. def getFieldBlob(_fieldId: Short): Option[TFieldBlob]

    Permalink

    Gets a field value encoded as a binary blob using TCompactProtocol.

    Gets a field value encoded as a binary blob using TCompactProtocol. If the specified field is present in the passthrough map, that value is returned. Otherwise, if the specified field is known and not optional and set to None, then the field is serialized and returned.

    Definition Classes
    BinaryAnnotation
  20. def getFieldBlobs(ids: TraversableOnce[Short]): Map[Short, TFieldBlob]

    Permalink

    Collects TCompactProtocol-encoded field values according to getFieldBlob into a map.

    Collects TCompactProtocol-encoded field values according to getFieldBlob into a map.

    Definition Classes
    BinaryAnnotation
  21. def hashCode(): Int

    Permalink
    Definition Classes
    BinaryAnnotation → AnyRef → Any
  22. def host: Option[Endpoint]

    Permalink

    The host that recorded tag, which allows you to differentiate between multiple tags with the same key.

    The host that recorded tag, which allows you to differentiate between multiple tags with the same key. There are two exceptions to this.

    When the key is CLIENT_ADDR or SERVER_ADDR, host indicates the source or destination of an RPC. This exception allows zipkin to display network context of uninstrumented services, or clients such as web browsers.

    Definition Classes
    ProxyBinaryAnnotation
  23. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  24. def key: String

    Permalink
    Definition Classes
    ProxyBinaryAnnotation
  25. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  26. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  27. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  28. def productArity: Int

    Permalink
    Definition Classes
    BinaryAnnotation → Product4 → Product
  29. def productElement(n: Int): Any

    Permalink
    Definition Classes
    BinaryAnnotation → Product4 → Product
  30. def productIterator: Iterator[Any]

    Permalink
    Definition Classes
    Product
  31. def productPrefix: String

    Permalink
    Definition Classes
    BinaryAnnotation → Product
  32. def setField(_blob: TFieldBlob): BinaryAnnotation

    Permalink

    Sets a field using a TCompactProtocol-encoded binary blob.

    Sets a field using a TCompactProtocol-encoded binary blob. If the field is a known field, the blob is decoded and the field is set to the decoded value. If the field is unknown and passthrough fields are enabled, then the blob will be stored in _passthroughFields.

    Definition Classes
    BinaryAnnotation
  33. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  34. def toString(): String

    Permalink
    Definition Classes
    BinaryAnnotation → AnyRef → Any
  35. def toTuple: (String, ByteBuffer, AnnotationType, Option[Endpoint])

    Permalink
    Definition Classes
    BinaryAnnotation
  36. def unsetAnnotationType: BinaryAnnotation

    Permalink
    Definition Classes
    BinaryAnnotation
  37. def unsetField(_fieldId: Short): BinaryAnnotation

    Permalink

    If the specified field is optional, it is set to None.

    If the specified field is optional, it is set to None. Otherwise, if the field is known, it is reverted to its default value; if the field is unknown, it is removed from the passthroughFields map, if present.

    Definition Classes
    BinaryAnnotation
  38. def unsetHost: BinaryAnnotation

    Permalink
    Definition Classes
    BinaryAnnotation
  39. def unsetKey: BinaryAnnotation

    Permalink

    If the specified field is optional, it is set to None.

    If the specified field is optional, it is set to None. Otherwise, if the field is known, it is reverted to its default value; if the field is unknown, it is removed from the passthroughFields map, if present.

    Definition Classes
    BinaryAnnotation
  40. def unsetValue: BinaryAnnotation

    Permalink
    Definition Classes
    BinaryAnnotation
  41. def value: ByteBuffer

    Permalink
    Definition Classes
    ProxyBinaryAnnotation
  42. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  45. def write(_oprot: TProtocol): Unit

    Permalink
    Definition Classes
    BinaryAnnotation → ThriftStruct

Inherited from BinaryAnnotation

Inherited from Serializable

Inherited from ValidatingThriftStruct[BinaryAnnotation]

Inherited from HasThriftStructCodec3[BinaryAnnotation]

Inherited from Product4[String, ByteBuffer, AnnotationType, Option[Endpoint]]

Inherited from Product

Inherited from Equals

Inherited from ThriftStruct

Inherited from AnyRef

Inherited from Any

Ungrouped