package check
Ordering
- Alphabetic
Visibility
- Public
- Protected
Type Members
- trait CheckWithSelfType[-T, +Self <: Check[T]] extends Check[T]
Make the return type of Check.checkIf to be the child class.
Make the return type of Check.checkIf to be the child class.
- T
the type of values being checked
- Self
the child class
- case class GrpcCheck[-T](wrapped: Check[GrpcResponse[T]], scope: Scope) extends CheckWithSelfType[GrpcResponse[T], GrpcCheck[T]] with Product with Serializable
- trait GrpcCheckSupport extends AnyRef
- class GrpcResponse[+T] extends AnyRef
- final class SomeWrapper[T] extends AnyVal
- trait StatusExtract extends AnyRef
- case class StreamCheck[-T](wrapped: Check[T], scope: Scope) extends CheckWithSelfType[T, StreamCheck[T]] with Product with Serializable
- trait StreamingCheckSupport extends AnyRef
- trait TrailersExtract extends AnyRef
Value Members
- object GrpcCheck extends Serializable
- object GrpcResponse