Class/Object

io.buoyant.namerd.iface.thriftscala

BindFailure

Related Docs: object BindFailure | package thriftscala

Permalink

class BindFailure extends Exception with ThriftException with SourcedException with ThriftStruct with Product4[String, Int, NameRef, String] with Serializable

Linear Supertypes
Product4[String, Int, NameRef, String], Product, Equals, ThriftStruct, SourcedException, HasRemoteInfo, ThriftException, Exception, Throwable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. BindFailure
  2. Product4
  3. Product
  4. Equals
  5. ThriftStruct
  6. SourcedException
  7. HasRemoteInfo
  8. ThriftException
  9. Exception
  10. Throwable
  11. Serializable
  12. AnyRef
  13. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new BindFailure(reason: String, retryInSeconds: Int, name: NameRef, ns: String)

    Permalink
  2. new BindFailure(reason: String, retryInSeconds: Int, name: NameRef, ns: String, _passthroughFields: Map[Short, TFieldBlob])

    Permalink

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
    BindFailure → Product4
  5. def _2: Int

    Permalink
    Definition Classes
    BindFailure → Product4
  6. def _3: NameRef

    Permalink
    Definition Classes
    BindFailure → Product4
  7. def _4: String

    Permalink
    Definition Classes
    BindFailure → Product4
  8. val _passthroughFields: Map[Short, TFieldBlob]

    Permalink
  9. final def addSuppressed(arg0: Throwable): Unit

    Permalink
    Definition Classes
    Throwable
  10. final def asInstanceOf[T0]: T0

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

    Permalink
    Definition Classes
    BindFailure → Equals
  12. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  13. def copy(reason: String = this.reason, retryInSeconds: Int = this.retryInSeconds, name: NameRef = this.name, ns: String = this.ns, _passthroughFields: Map[Short, TFieldBlob] = this._passthroughFields): BindFailure

    Permalink
  14. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    BindFailure → Equals → AnyRef → Any
  16. def exceptionMessage(): String

    Permalink
    Definition Classes
    HasRemoteInfo
  17. def fillInStackTrace(): Throwable

    Permalink
    Definition Classes
    Throwable
  18. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. def getCause(): Throwable

    Permalink
    Definition Classes
    Throwable
  20. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  21. 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.

  22. def getFieldBlobs(ids: TraversableOnce[Short]): Map[Short, TFieldBlob]

    Permalink

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

  23. def getLocalizedMessage(): String

    Permalink
    Definition Classes
    Throwable
  24. def getMessage(): String

    Permalink
    Definition Classes
    BindFailure → HasRemoteInfo → Throwable
  25. def getStackTrace(): Array[StackTraceElement]

    Permalink
    Definition Classes
    Throwable
  26. final def getSuppressed(): Array[Throwable]

    Permalink
    Definition Classes
    Throwable
  27. def hashCode(): Int

    Permalink
    Definition Classes
    BindFailure → AnyRef → Any
  28. def initCause(arg0: Throwable): Throwable

    Permalink
    Definition Classes
    Throwable
  29. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  30. val name: NameRef

    Permalink
  31. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  34. val ns: String

    Permalink
  35. def printStackTrace(arg0: PrintWriter): Unit

    Permalink
    Definition Classes
    Throwable
  36. def printStackTrace(arg0: PrintStream): Unit

    Permalink
    Definition Classes
    Throwable
  37. def printStackTrace(): Unit

    Permalink
    Definition Classes
    Throwable
  38. def productArity: Int

    Permalink
    Definition Classes
    BindFailure → Product4 → Product
  39. def productElement(n: Int): Any

    Permalink
    Definition Classes
    BindFailure → Product4 → Product
  40. def productIterator: Iterator[Any]

    Permalink
    Definition Classes
    Product
  41. def productPrefix: String

    Permalink
    Definition Classes
    BindFailure → Product
  42. val reason: String

    Permalink
  43. def remoteInfo(): RemoteInfo

    Permalink
    Definition Classes
    HasRemoteInfo
  44. val retryInSeconds: Int

    Permalink
  45. var serviceName: String

    Permalink
    Definition Classes
    SourcedException
  46. def setField(_blob: TFieldBlob): BindFailure

    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.

  47. def setStackTrace(arg0: Array[StackTraceElement]): Unit

    Permalink
    Definition Classes
    Throwable
  48. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    BindFailure → Throwable → AnyRef → Any
  50. def unsetField(_fieldId: Short): BindFailure

    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.

  51. def unsetName: BindFailure

    Permalink
  52. def unsetNs: BindFailure

    Permalink
  53. def unsetReason: BindFailure

    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.

  54. def unsetRetryInSeconds: BindFailure

    Permalink
  55. final def wait(): Unit

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

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

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

    Permalink
    Definition Classes
    BindFailure → ThriftStruct

Inherited from Product4[String, Int, NameRef, String]

Inherited from Product

Inherited from Equals

Inherited from ThriftStruct

Inherited from SourcedException

Inherited from HasRemoteInfo

Inherited from ThriftException

Inherited from Exception

Inherited from Throwable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped