object Output

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

Type Members

  1. final case class ArbitraryOutput[A]()(implicit schema: Schema[A]) extends Output[A] with Product with Serializable
  2. final case class ChunkOutput[+A](output: Output[A]) extends Output[Chunk[A]] with Product with Serializable
  3. final case class ChunkTuple2Output[+A, +B](_1: Output[A], _2: Output[B]) extends Output[Chunk[(A, B)]] with Product with Serializable
  4. final case class KeyValueOutput[K, V](outK: Output[K], outV: Output[V]) extends Output[Map[K, V]] with Product with Serializable
  5. final case class MultiStringChunkOutput[+A](output: Output[A]) extends Output[Chunk[A]] with Product with Serializable
  6. final case class OptionalOutput[+A](output: Output[A]) extends Output[Option[A]] with Product with Serializable
  7. final case class ScanOutput[+A](output: Output[A]) extends Output[(Long, Chunk[A])] with Product with Serializable
  8. final case class StreamEntriesOutput[I, K, V]()(implicit idSchema: Schema[I], keySchema: Schema[K], valueSchema: Schema[V]) extends Output[Chunk[redis.StreamEntry[I, K, V]]] with Product with Serializable
  9. final case class StreamEntryOutput[I, K, V]()(implicit idSchema: Schema[I], keySchema: Schema[K], valueSchema: Schema[V]) extends Output[redis.StreamEntry[I, K, V]] with Product with Serializable
  10. final case class StreamInfoFullOutput[I, K, V]()(implicit evidence$1: Schema[I], evidence$2: Schema[K], evidence$3: Schema[V]) extends Output[FullStreamInfo[I, K, V]] with Product with Serializable
  11. final case class StreamInfoOutput[I, K, V]()(implicit evidence$4: Schema[I], evidence$5: Schema[K], evidence$6: Schema[V]) extends Output[redis.StreamInfo[I, K, V]] with Product with Serializable
  12. final case class StreamOutput[N, I, K, V]()(implicit nameSchema: Schema[N], idSchema: Schema[I], keySchema: Schema[K], valueSchema: Schema[V]) extends Output[redis.StreamChunk[N, I, K, V]] with Product with Serializable
  13. final case class Tuple2Output[+A, +B](_1: Output[A], _2: Output[B]) extends Output[(A, B)] with Product with Serializable
  14. final case class Tuple3Output[+A, +B, +C](_1: Output[A], _2: Output[B], _3: Output[C]) extends Output[(A, B, C)] with Product with Serializable
  15. final case class ZRandMemberOutput[+A](output: Output[A]) extends Output[Chunk[A]] with Product with Serializable
  16. final case class ZRandMemberTuple2Output[+A, +B](_1: Output[A], _2: Output[B]) extends Output[Chunk[(A, B)]] with Product with Serializable

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. final val DurationMillisecondsOutput: Output[Duration]
  5. final val DurationSecondsOutput: Output[Duration]
  6. def apply[A](implicit output: Output[A]): Output[A]
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  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() @IntrinsicCandidate()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  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() @IntrinsicCandidate()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  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])
  22. case object BoolOutput extends Output[Boolean] with Product with Serializable
  23. case object BulkStringOutput extends Output[Chunk[Byte]] with Product with Serializable
  24. case object ClientTrackingInfoOutput extends Output[redis.ClientTrackingInfo] with Product with Serializable
  25. case object ClientTrackingRedirectOutput extends Output[redis.ClientTrackingRedirect] with Product with Serializable
  26. case object DoubleOutput extends Output[Double] with Product with Serializable
  27. case object GeoOutput extends Output[Chunk[Option[redis.LongLat]]] with Product with Serializable
  28. case object GeoRadiusOutput extends Output[Chunk[redis.GeoView]] with Product with Serializable
  29. case object KeyElemOutput extends Output[Option[(String, String)]] with Product with Serializable
  30. case object LongOutput extends Output[Long] with Product with Serializable
  31. case object MultiStringOutput extends Output[String] with Product with Serializable
  32. case object PendingMessagesOutput extends Output[Chunk[redis.PendingMessage]] with Product with Serializable
  33. case object ResetOutput extends Output[Unit] with Product with Serializable
  34. case object RespValueOutput extends Output[RespValue] with Product with Serializable
  35. case object SetOutput extends Output[Boolean] with Product with Serializable
  36. case object SingleOrMultiStringOutput extends Output[String] with Product with Serializable
  37. case object StrAlgoLcsOutput extends Output[redis.LcsOutput] with Product with Serializable
  38. case object StreamConsumersInfoOutput extends Output[Chunk[redis.StreamConsumersInfo]] with Product with Serializable
  39. case object StreamGroupsInfoOutput extends Output[Chunk[redis.StreamGroupsInfo]] with Product with Serializable
  40. case object StringOutput extends Output[String] with Product with Serializable
  41. case object TypeOutput extends Output[redis.RedisType] with Product with Serializable
  42. case object UnitOutput extends Output[Unit] with Product with Serializable
  43. case object XPendingOutput extends Output[redis.PendingInfo] with Product with Serializable

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