Packages

object Failure extends Serializable

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Failure
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val FutureRetryableNackFailure: Future[Nothing]

    Representation of a future nack response that is retryable

  5. val NonRetryableNackFailure: Failure

    Representation of a nack response that is non-retryable

  6. val RetryableNackFailure: Failure

    Representation of a nack response that is retryable

  7. def adapt(exc: Throwable, flags: Long): Failure

    Adapt an exception.

    Adapt an exception. If the passed-in exception is already a failure, this returns a chained failure with the assigned flags. If it is not, it returns a new failure with the given flags.

  8. def apply(why: String): Failure

    Create a new failure with the given message; no flags.

  9. def apply(why: String, flags: Long): Failure

    Create a new failure with the given message and flags.

  10. def apply(why: String, cause: Throwable): Failure

    Create a new failure with the given message and cause; no flags.

  11. def apply(why: String, cause: Throwable, flags: Long): Failure

    Create a new failure with the given message, cause, and flags.

  12. def apply(cause: Throwable): Failure

    Create a new failure with the given cause; no flags.

  13. def apply(cause: Throwable, flags: Long, logLevel: Level = Level.WARNING): Failure

    Create a new failure with the given cause and flags.

  14. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  15. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  16. def deadlineExceeded(why: String): Failure

    Create a new FailureFlags.DeadlineExceeded failure with the given message.

  17. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  19. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. def ignorable(why: String): Failure

    Create a new FailureFlags.Ignorable failure with the given message.

    Create a new FailureFlags.Ignorable failure with the given message.

    Note

    Ignorable implies NonRetryable, but does not set the flag explicitly. See com.twitter.finagle.service.ResponseClassifier for how Ignorable is used.

  23. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  24. def module[Req, Rep]: Stackable[ServiceFactory[Req, Rep]]

    A module to strip out dangerous flags.

  25. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  26. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  27. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  28. def rejected(why: String, cause: Throwable): Failure

    Create a new FailureFlags.Retryable and FailureFlags.Rejected failure with the given message and cause.

  29. def rejected(cause: Throwable): Failure

    Create a new FailureFlags.Retryable and FailureFlags.Rejected failure with the given cause.

  30. def rejected(why: String): Failure

    Create a new FailureFlags.Retryable and FailureFlags.Rejected failure with the given message.

  31. val rejected: Failure

    A default FailureFlags.Retryable failure.

  32. val role: Role
  33. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  34. def toString(): String
    Definition Classes
    AnyRef → Any
  35. def unapply(exc: Failure): Option[Option[Throwable]]

    Extractor for Failure; returns its cause.

  36. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  39. def wrap(exc: Throwable): Failure

    Create a new wrapped Failure with no flags.

    Create a new wrapped Failure with no flags. If the passed-in exception is a failure, it is simply extended, otherwise a new Failure is created.

  40. def wrap(exc: Throwable, flags: Long): Failure

    Create a new wrapped Failure with the given flags.

    Create a new wrapped Failure with the given flags. If the passed-in exception is a failure, it is simply extended, otherwise a new Failure is created.

  41. object Source extends Enumeration

Deprecated Value Members

  1. val Restartable: Long

    Flag restartable indicates that the action that caused the failure is restartable -- that is, it is safe to simply re-issue the action.

    Flag restartable indicates that the action that caused the failure is restartable -- that is, it is safe to simply re-issue the action.

    Annotations
    @deprecated
    Deprecated

    (Since version 2018-7-17) Use FailureFlags.Retryable

  2. val Wrapped: Long

    Flag wrapped indicates that this failure was wrapped, and should not be presented to the user (directly, or via stats).

    Flag wrapped indicates that this failure was wrapped, and should not be presented to the user (directly, or via stats). Rather, it must first be unwrapped: the inner cause is the presentable failure.

    Annotations
    @deprecated
    Deprecated

    (Since version 2018-7-17) Use FailureFlags.Wrapped

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped