Package

org.programmiersportgruppe.redis

commands

Permalink

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

    Permalink
  2. trait BooleanIntegerExpected extends SingleReplyExpected

    Permalink
  3. trait BulkExpected extends SingleReplyExpected

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

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

    Permalink
  6. trait ConnectionCloseExpected extends AnyRef

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

    Permalink
  8. sealed abstract class CreationRestriction extends AnyRef

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

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

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

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

    Permalink
  13. sealed abstract class ExpirationPolicy extends AnyRef

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

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

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

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

    Permalink
  18. trait IntegerExpected extends SingleReplyExpected

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

    Permalink
  20. trait OkStatusExpected extends SingleReplyExpected

    Permalink
  21. trait OptimisticTransactionContinuation extends AnyRef

    Permalink
  22. trait OptimisticTransactionPerpetuation extends OptimisticTransactionContinuation

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

    Permalink
  24. sealed abstract class PersistenceModifier extends AnyRef

    Permalink
  25. sealed abstract class RecognisedCommand extends Command

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

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

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

    Permalink
  29. trait SingleReplyExpected extends AnyRef

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

    Permalink

Ungrouped