Package

com.github.j5ik2o.reactive.redis.command

keys

Permalink

package keys

Visibility
  1. Public
  2. All

Type Members

  1. final case class DelFailed(id: UUID, requestId: UUID, ex: RedisIOException) extends DelResponse with Product with Serializable

    Permalink
  2. final class DelRequest extends CommandRequest with StringParsersSupport

    Permalink
  3. sealed trait DelResponse extends CommandResponse

    Permalink
  4. final case class DelSucceeded(id: UUID, requestId: UUID, value: Long) extends DelResponse with Product with Serializable

    Permalink
  5. final case class DelSuspended(id: UUID, requestId: UUID) extends DelResponse with Product with Serializable

    Permalink
  6. final case class DumpFailed(id: UUID, requestId: UUID, ex: RedisIOException) extends DumpResponse with Product with Serializable

    Permalink
  7. final case class DumpRequest(id: UUID, key: String) extends CommandRequest with Product with Serializable

    Permalink
  8. sealed trait DumpResponse extends CommandResponse

    Permalink
  9. final case class DumpSucceeded(id: UUID, requestId: UUID, value: Option[Array[Byte]]) extends DumpResponse with Product with Serializable

    Permalink
  10. final case class DumpSuspended(id: UUID, requestId: UUID) extends DumpResponse with Product with Serializable

    Permalink
  11. final case class ExistsFailed(id: UUID, requestId: UUID, ex: RedisIOException) extends ExistsResponse with Product with Serializable

    Permalink
  12. final class ExistsRequest extends CommandRequest with StringParsersSupport

    Permalink
  13. sealed trait ExistsResponse extends CommandResponse

    Permalink
  14. final case class ExistsSucceeded(id: UUID, requestId: UUID, isExists: Boolean) extends ExistsResponse with Product with Serializable

    Permalink
  15. final case class ExistsSuspended(id: UUID, requestId: UUID) extends ExistsResponse with Product with Serializable

    Permalink
  16. final case class ExpireAtFailed(id: UUID, requestId: UUID, ex: RedisIOException) extends ExpireAtResponse with Product with Serializable

    Permalink
  17. final case class ExpireAtRequest(id: UUID, key: String, expiresAt: ZonedDateTime) extends CommandRequest with StringParsersSupport with Product with Serializable

    Permalink
  18. sealed trait ExpireAtResponse extends CommandResponse

    Permalink
  19. final case class ExpireAtSucceeded(id: UUID, requestId: UUID, isSet: Boolean) extends ExpireAtResponse with Product with Serializable

    Permalink
  20. final case class ExpireAtSuspended(id: UUID, requestId: UUID) extends ExpireAtResponse with Product with Serializable

    Permalink
  21. final case class ExpireFailed(id: UUID, requestId: UUID, ex: RedisIOException) extends ExpireResponse with Product with Serializable

    Permalink
  22. final case class ExpireRequest(id: UUID, key: String, seconds: FiniteDuration) extends CommandRequest with StringParsersSupport with Product with Serializable

    Permalink
  23. sealed trait ExpireResponse extends CommandResponse

    Permalink
  24. final case class ExpireSucceeded(id: UUID, requestId: UUID, isSet: Boolean) extends ExpireResponse with Product with Serializable

    Permalink
  25. final case class ExpireSuspended(id: UUID, requestId: UUID) extends ExpireResponse with Product with Serializable

    Permalink
  26. final case class KeysFailed(id: UUID, requestId: UUID, ex: RedisIOException) extends KeysResponse with Product with Serializable

    Permalink
  27. final case class KeysRequest(id: UUID, pattern: String) extends CommandRequest with StringParsersSupport with Product with Serializable

    Permalink
  28. sealed trait KeysResponse extends CommandResponse

    Permalink
  29. final case class KeysSucceeded(id: UUID, requestId: UUID, values: Seq[String]) extends KeysResponse with Product with Serializable

    Permalink
  30. final case class KeysSuspended(id: UUID, requestId: UUID) extends KeysResponse with Product with Serializable

    Permalink
  31. final case class MigrateFailed(id: UUID, requestId: UUID, ex: RedisIOException) extends MigrateResponse with Product with Serializable

    Permalink
  32. final case class MigrateRequest(id: UUID, host: String, port: Int, key: String, toDbNo: Int, timeout: FiniteDuration, copy: Boolean, replace: Boolean, keys: NonEmptyList[String]) extends CommandRequest with StringParsersSupport with Product with Serializable

    Permalink
  33. sealed trait MigrateResponse extends CommandResponse

    Permalink
  34. final case class MigrateSucceeded(id: UUID, requestId: UUID, status: Status) extends MigrateResponse with Product with Serializable

    Permalink
  35. final case class MigrateSuspended(id: UUID, requestId: UUID) extends MigrateResponse with Product with Serializable

    Permalink
  36. final case class MoveFailed(id: UUID, requestId: UUID, ex: RedisIOException) extends MoveResponse with Product with Serializable

    Permalink
  37. final case class MoveRequest(id: UUID, key: String, db: Int) extends CommandRequest with StringParsersSupport with Product with Serializable

    Permalink
  38. sealed trait MoveResponse extends CommandResponse

    Permalink
  39. final case class MoveSucceeded(id: UUID, requestId: UUID, isMoved: Boolean) extends MoveResponse with Product with Serializable

    Permalink
  40. final case class MoveSuspended(id: UUID, requestId: UUID) extends MoveResponse with Product with Serializable

    Permalink
  41. final case class ObjectFailed(id: UUID, requestId: UUID, ex: RedisIOException) extends ObjectResponse with Product with Serializable

    Permalink
  42. final case class ObjectIntegerSucceeded(id: UUID, requestId: UUID, value: Long) extends ObjectSucceeded with Product with Serializable

    Permalink
  43. final case class ObjectRequest(id: UUID, subCommand: SubCommand) extends CommandRequest with StringParsersSupport with Product with Serializable

    Permalink
  44. sealed trait ObjectResponse extends CommandResponse

    Permalink
  45. final case class ObjectStringSucceeded(id: UUID, requestId: UUID, value: Option[String]) extends ObjectSucceeded with Product with Serializable

    Permalink
  46. sealed abstract class ObjectSucceeded extends ObjectResponse

    Permalink
  47. final case class ObjectSuspended(id: UUID, requestId: UUID) extends ObjectResponse with Product with Serializable

    Permalink
  48. final case class PExpireAtFailed(id: UUID, requestId: UUID, ex: RedisIOException) extends PExpireAtResponse with Product with Serializable

    Permalink
  49. final case class PExpireAtRequest(id: UUID, key: String, millisecondsTimestamp: ZonedDateTime) extends CommandRequest with StringParsersSupport with Product with Serializable

    Permalink
  50. sealed trait PExpireAtResponse extends CommandResponse

    Permalink
  51. final case class PExpireAtSucceeded(id: UUID, requestId: UUID, isSet: Boolean) extends PExpireAtResponse with Product with Serializable

    Permalink
  52. final case class PExpireAtSuspended(id: UUID, requestId: UUID) extends PExpireAtResponse with Product with Serializable

    Permalink
  53. final case class PExpireFailed(id: UUID, requestId: UUID, ex: RedisIOException) extends PExpireResponse with Product with Serializable

    Permalink
  54. final case class PExpireRequest(id: UUID, key: String, milliseconds: FiniteDuration) extends CommandRequest with StringParsersSupport with Product with Serializable

    Permalink
  55. sealed trait PExpireResponse extends CommandResponse

    Permalink
  56. final case class PExpireSucceeded(id: UUID, requestId: UUID, isSet: Boolean) extends PExpireResponse with Product with Serializable

    Permalink
  57. final case class PExpireSuspended(id: UUID, requestId: UUID) extends PExpireResponse with Product with Serializable

    Permalink
  58. final case class PTtlFailed(id: UUID, requestId: UUID, ex: RedisIOException) extends PTtlResponse with Product with Serializable

    Permalink
  59. final case class PTtlRequest(id: UUID, key: String) extends CommandRequest with StringParsersSupport with Product with Serializable

    Permalink
  60. sealed trait PTtlResponse extends CommandResponse

    Permalink
  61. final case class PTtlSucceeded(id: UUID, requestId: UUID, value: Long) extends PTtlResponse with Product with Serializable

    Permalink
  62. final case class PTtlSuspended(id: UUID, requestId: UUID) extends PTtlResponse with Product with Serializable

    Permalink
  63. final case class PersistFailed(id: UUID, requestId: UUID, ex: RedisIOException) extends PersistResponse with Product with Serializable

    Permalink
  64. final case class PersistRequest(id: UUID, key: String) extends CommandRequest with StringParsersSupport with Product with Serializable

    Permalink
  65. sealed trait PersistResponse extends CommandResponse

    Permalink
  66. final case class PersistSucceeded(id: UUID, requestId: UUID, isRemoved: Boolean) extends PersistResponse with Product with Serializable

    Permalink
  67. final case class PersistSuspended(id: UUID, requestId: UUID) extends PersistResponse with Product with Serializable

    Permalink
  68. final case class RandomKeyFailed(id: UUID, requestId: UUID, ex: RedisIOException) extends RandomKeyResponse with Product with Serializable

    Permalink
  69. final case class RandomKeyRequest(id: UUID) extends CommandRequest with StringParsersSupport with Product with Serializable

    Permalink
  70. sealed trait RandomKeyResponse extends CommandResponse

    Permalink
  71. final case class RandomKeySucceeded(id: UUID, requestId: UUID, value: Option[String]) extends RandomKeyResponse with Product with Serializable

    Permalink
  72. final case class RandomKeySuspended(id: UUID, requestId: UUID) extends RandomKeyResponse with Product with Serializable

    Permalink
  73. final case class RenameFailed(id: UUID, requestId: UUID, ex: RedisIOException) extends RenameResponse with Product with Serializable

    Permalink
  74. final case class RenameNxFailed(id: UUID, requestId: UUID, ex: RedisIOException) extends RenameNxResponse with Product with Serializable

    Permalink
  75. final case class RenameNxRequest(id: UUID, key: String, newKey: String) extends CommandRequest with StringParsersSupport with Product with Serializable

    Permalink
  76. sealed trait RenameNxResponse extends CommandResponse

    Permalink
  77. final case class RenameNxSucceeded(id: UUID, requestId: UUID, isRenamed: Boolean) extends RenameNxResponse with Product with Serializable

    Permalink
  78. final case class RenameNxSuspended(id: UUID, requestId: UUID) extends RenameNxResponse with Product with Serializable

    Permalink
  79. final case class RenameRequest(id: UUID, key: String, newKey: String) extends CommandRequest with StringParsersSupport with Product with Serializable

    Permalink
  80. sealed trait RenameResponse extends CommandResponse

    Permalink
  81. final case class RenameSucceeded(id: UUID, requestId: UUID) extends RenameResponse with Product with Serializable

    Permalink
  82. final case class RenameSuspended(id: UUID, requestId: UUID) extends RenameResponse with Product with Serializable

    Permalink
  83. final case class ScanFailed(id: UUID, requestId: UUID, ex: RedisIOException) extends ScanResponse with Product with Serializable

    Permalink
  84. final case class ScanRequest(id: UUID, cursor: String, matchOption: Option[MatchOption] = None, countOption: Option[CountOption] = None) extends CommandRequest with StringParsersSupport with Product with Serializable

    Permalink
  85. sealed trait ScanResponse extends CommandResponse

    Permalink
  86. final case class ScanSucceeded(id: UUID, requestId: UUID, result: ScanResult) extends ScanResponse with Product with Serializable

    Permalink
  87. final case class ScanSuspended(id: UUID, requestId: UUID) extends ScanResponse with Product with Serializable

    Permalink
  88. final case class SortFailed(id: UUID, requestId: UUID, ex: RedisIOException) extends SortResponse with Product with Serializable

    Permalink
  89. final case class SortListSucceeded(id: UUID, requestId: UUID, values: Seq[Option[String]]) extends SortSucceeded with Product with Serializable

    Permalink
  90. final case class SortLongSucceeded(id: UUID, requestId: UUID, value: Long) extends SortSucceeded with Product with Serializable

    Permalink
  91. final case class SortRequest(id: UUID, key: String, byPattern: Option[ByPattern] = None, limitOffset: Option[LimitOffset] = None, getPatterns: Seq[GetPattern] = Seq.empty, order: Option[Order] = None, alpha: Boolean = false, store: Option[Store] = None) extends CommandRequest with StringParsersSupport with Product with Serializable

    Permalink
  92. sealed trait SortResponse extends CommandResponse

    Permalink
  93. sealed abstract class SortSucceeded extends SortResponse

    Permalink
  94. final case class SortSuspended(id: UUID, requestId: UUID) extends SortResponse with Product with Serializable

    Permalink
  95. sealed trait Status extends EnumEntry

    Permalink
  96. final case class TouchFailed(id: UUID, requestId: UUID, ex: RedisIOException) extends TouchResponse with Product with Serializable

    Permalink
  97. final case class TouchRequest(id: UUID, keys: NonEmptyList[String]) extends CommandRequest with StringParsersSupport with Product with Serializable

    Permalink
  98. sealed trait TouchResponse extends CommandResponse

    Permalink
  99. final case class TouchSucceeded(id: UUID, requestId: UUID, value: Long) extends TouchResponse with Product with Serializable

    Permalink
  100. final case class TouchSuspended(id: UUID, requestId: UUID) extends TouchResponse with Product with Serializable

    Permalink
  101. final case class TtlFailed(id: UUID, requestId: UUID, ex: RedisIOException) extends TtlResponse with Product with Serializable

    Permalink
  102. final case class TtlRequest(id: UUID, key: String) extends CommandRequest with StringParsersSupport with Product with Serializable

    Permalink
  103. sealed trait TtlResponse extends CommandResponse

    Permalink
  104. final case class TtlSucceeded(id: UUID, requestId: UUID, value: Long) extends TtlResponse with Product with Serializable

    Permalink
  105. final case class TtlSuspended(id: UUID, requestId: UUID) extends TtlResponse with Product with Serializable

    Permalink
  106. final case class TypeFailed(id: UUID, requestId: UUID, ex: RedisIOException) extends TypeResponse with Product with Serializable

    Permalink
  107. final case class TypeRequest(id: UUID, key: String) extends CommandRequest with StringParsersSupport with Product with Serializable

    Permalink
  108. sealed trait TypeResponse extends CommandResponse

    Permalink
  109. final case class TypeSucceeded(id: UUID, requestId: UUID, value: ValueType) extends TypeResponse with Product with Serializable

    Permalink
  110. final case class TypeSuspended(id: UUID, requestId: UUID) extends TypeResponse with Product with Serializable

    Permalink
  111. final case class UnlinkFailed(id: UUID, requestId: UUID, ex: RedisIOException) extends UnlinkResponse with Product with Serializable

    Permalink
  112. final class UnlinkRequest extends CommandRequest with StringParsersSupport

    Permalink
  113. sealed trait UnlinkResponse extends CommandResponse

    Permalink
  114. final case class UnlinkSucceeded(id: UUID, requestId: UUID, value: Long) extends UnlinkResponse with Product with Serializable

    Permalink
  115. final case class UnlinkSuspended(id: UUID, requestId: UUID) extends UnlinkResponse with Product with Serializable

    Permalink
  116. sealed abstract class ValueType extends EnumEntry

    Permalink
  117. final case class WaitReplicasFailed(id: UUID, requestId: UUID, ex: RedisIOException) extends WaitReplicasResponse with Product with Serializable

    Permalink
  118. final case class WaitReplicasRequest(id: UUID, numOfReplicas: Int, timeout: Duration) extends CommandRequest with StringParsersSupport with Product with Serializable

    Permalink
  119. sealed trait WaitReplicasResponse extends CommandResponse

    Permalink
  120. final case class WaitReplicasSucceeded(id: UUID, requestId: UUID, value: Long) extends WaitReplicasResponse with Product with Serializable

    Permalink
  121. final case class WaitReplicasSuspended(id: UUID, requestId: UUID) extends WaitReplicasResponse with Product with Serializable

    Permalink

Value Members

  1. object DelRequest

    Permalink
  2. object ExistsRequest

    Permalink
  3. object ObjectRequest extends CommandRequestSupoprt with Serializable

    Permalink
  4. object ScanRequest extends Serializable

    Permalink
  5. object ScanSucceeded extends Serializable

    Permalink
  6. object SortResponse

    Permalink
  7. object Status extends Enum[Status]

    Permalink
  8. object UnlinkRequest

    Permalink
  9. object ValueType extends Enum[ValueType]

    Permalink

Ungrouped