c

scredis

CommandInfo

final case class CommandInfo(name: String, arity: Int, flags: CommandFlags, firstKeyPosition: Int, lastKeyPosition: Int, keyStepCount: Int) extends Product with Serializable

Holds information about a Redis command. This type is returned by the COMMAND and COMMAND INFO command

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CommandInfo
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new CommandInfo(name: String, arity: Int, flags: CommandFlags, firstKeyPosition: Int, lastKeyPosition: Int, keyStepCount: Int)

Value Members

  1. val arity: Int
  2. val firstKeyPosition: Int
  3. val flags: CommandFlags
  4. val keyStepCount: Int
  5. val lastKeyPosition: Int
  6. val name: String
  7. def toString(): String
    Definition Classes
    CommandInfo → AnyRef → Any