object GrpcError

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GrpcError
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. case class GrpcClientError(request: String, serverName: String, status: Status, optTrailers: Option[Metadata], decodedRpcStatus: Option[DecodedRpcStatus]) extends GrpcError with Product with Serializable

    The server has refused the request, because it is invalid.

    The server has refused the request, because it is invalid. The client should not have sent the request. The server has not processed the request. It does not make sense to retry.

  2. case class GrpcClientGaveUp(request: String, serverName: String, status: Status, optTrailers: Option[Metadata], decodedRpcStatus: Option[DecodedRpcStatus]) extends GrpcError with Product with Serializable

    The client gave up waiting for a response.

    The client gave up waiting for a response. The server may or may not process the request. It may or may not make sense to retry, depending on the specific situation.

  3. case class GrpcRequestRefusedByServer(request: String, serverName: String, status: Status, optTrailers: Option[Metadata], decodedRpcStatus: Option[DecodedRpcStatus]) extends GrpcError with Product with Serializable

    The server was unable to process the request.

    The server was unable to process the request. The server has not processed the request. It may or may not make sense to retry, depending on the specific situation.

  4. case class GrpcServerError(request: String, serverName: String, status: Status, optTrailers: Option[Metadata], decodedRpcStatus: Option[DecodedRpcStatus]) extends GrpcError with Product with Serializable

    An internal error has occurred at the server.

    An internal error has occurred at the server. The server may have partially processed the request. It does not make sense to retry.

  5. case class GrpcServiceUnavailable(request: String, serverName: String, status: Status, optTrailers: Option[Metadata], decodedRpcStatus: Option[DecodedRpcStatus]) extends GrpcError with Product with Serializable

    The server or the service was unavailable.

    The server or the service was unavailable. The server has not processed the request. It makes sense to retry.

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. def apply(request: String, serverName: String, e: StatusRuntimeException): GrpcError
    Annotations
    @nowarn()
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def checkAuthenticationError(optTrailers: Option[Metadata], expectAny: Seq[String]): Boolean
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  8. def collectCauses(maybeThrowable: Option[Throwable]): Seq[String]
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  18. def toString(): String
    Definition Classes
    AnyRef → Any
  19. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  20. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  21. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped