org.programmiersportgruppe.redis

commands

package commands

Visibility
  1. Public
  2. All

Type Members

  1. case class APPEND(key: Key, value: ByteString) extends RecognisedCommand with IntegerExpected with Product with Serializable

  2. trait BooleanIntegerExpected extends SingleReplyExpected

  3. trait BulkExpected extends SingleReplyExpected

  4. case class CLIENT_SETNAME(connectionName: String) extends RecognisedCommand with OkStatusExpected with Product with Serializable

  5. case class Commit(command: Command, additionalCommands: Command*) extends OptimisticTransactionContinuation with Product with Serializable

  6. trait ConnectionCloseExpected extends AnyRef

  7. case class Continue(command: Command, additionalCommands: Command*) extends OptimisticTransactionPerpetuation with Product with Serializable

  8. sealed abstract class CreationRestriction extends AnyRef

  9. case class DEL(key: Key, additionalKeys: Key*) extends RecognisedCommand with IntegerExpected with Product with Serializable

  10. case class DUMP(key: Key) extends RecognisedCommand with BulkExpected with Product with Serializable

  11. case class EXISTS(key: Key) extends RecognisedCommand with BooleanIntegerExpected with Product with Serializable

  12. case class EXPIRE(key: Key, seconds: Long) extends RecognisedCommand with BooleanIntegerExpected with Product with Serializable

  13. sealed abstract class ExpirationPolicy extends AnyRef

  14. case class ExpiresInMilliseconds(millis: Long) extends ExpirationPolicy with Product with Serializable

  15. case class ExpiresInSeconds(seconds: Long) extends ExpirationPolicy with Product with Serializable

  16. case class GET(key: Key) extends RecognisedCommand with BulkExpected with Product with Serializable

  17. case class GETRANGE(key: Key, start: Long, end: Long) extends RecognisedCommand with BulkExpected with Product with Serializable

  18. trait IntegerExpected extends SingleReplyExpected

  19. case class Multi(command1: Command, command2: Command, additionalCommands: Command*) extends Product with Serializable

  20. trait OkStatusExpected extends SingleReplyExpected

  21. trait OptimisticTransactionContinuation extends AnyRef

  22. trait OptimisticTransactionPerpetuation extends OptimisticTransactionContinuation

  23. case class PUBLISH(channel: ByteString, message: ByteString) extends RecognisedCommand with IntegerExpected with Product with Serializable

  24. sealed abstract class PersistenceModifier extends AnyRef

  25. sealed abstract class RecognisedCommand extends Command

  26. case class SET(key: Key, value: ByteString, expiration: Option[ExpirationPolicy] = scala.None, restriction: Option[CreationRestriction] = scala.None) extends RecognisedCommand with SingleReplyExpected with Product with Serializable

  27. case class SHUTDOWN(forcePersistence: Option[PersistenceModifier] = scala.None) extends RecognisedCommand with ConnectionCloseExpected with Product with Serializable

  28. case class SUBSCRIBE(channel: ByteString, additionalChannels: ByteString*) extends RecognisedCommand with Product with Serializable

  29. trait SingleReplyExpected extends AnyRef

  30. case class Watching(key: Key, additionalKeys: Key*)(command: Command, additionalCommands: Command*) extends OptimisticTransactionPerpetuation with Product with Serializable

Ungrouped