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 AnyRef

  3. trait BulkExpected extends AnyRef

  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 AnyRef

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

  20. trait OkStatusExpected extends AnyRef

  21. trait OptimisticTransactionContinuation extends AnyRef

  22. trait OptimisticTransactionPerpetuation extends OptimisticTransactionContinuation

  23. sealed abstract class PersistenceModifier extends AnyRef

  24. sealed abstract class RecognisedCommand extends Command

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

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

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

Ungrouped