Uses of Class
net.rubyeye.xmemcached.command.CommandType
-
Packages that use CommandType Package Description net.rubyeye.xmemcached XMemcached's main classes and interfaces,use these classes/interfaces to interact with memcached servers.net.rubyeye.xmemcached.command Memcached protocol implementationsnet.rubyeye.xmemcached.command.binary Memcached text protocol implementationsnet.rubyeye.xmemcached.command.kestrel Kestrel protocol implementationsnet.rubyeye.xmemcached.command.text Memcached text protocol implementationsnet.rubyeye.xmemcached.monitor JMX MBean Server and MBeans for monitor and statistics -
-
Uses of CommandType in net.rubyeye.xmemcached
Methods in net.rubyeye.xmemcached with parameters of type CommandType Modifier and Type Method Description CommandCommandFactory. createGetCommand(String key, byte[] keyBytes, CommandType cmdType, Transcoder transcoder)create a get/gets command<T> CommandCommandFactory. createGetMultiCommand(Collection<String> keys, CountDownLatch latch, CommandType cmdType, Transcoder<T> transcoder)Create a multi-get commandCommandCommandFactory. createIncrDecrCommand(String key, byte[] keyBytes, long delta, long initial, int expTime, CommandType cmdType, boolean noreply)create a incr/decr command -
Uses of CommandType in net.rubyeye.xmemcached.command
Fields in net.rubyeye.xmemcached.command declared as CommandType Modifier and Type Field Description protected CommandTypeCommand. commandTypeMethods in net.rubyeye.xmemcached.command that return CommandType Modifier and Type Method Description CommandTypeCommand. getCommandType()static CommandTypeCommandType. valueOf(String name)Returns the enum constant of this type with the specified name.static CommandType[]CommandType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in net.rubyeye.xmemcached.command with parameters of type CommandType Modifier and Type Method Description CommandBinaryCommandFactory. createGetCommand(String key, byte[] keyBytes, CommandType cmdType, Transcoder transcoder)CommandKestrelCommandFactory. createGetCommand(String key, byte[] keyBytes, CommandType cmdType, Transcoder transcoder)CommandTextCommandFactory. createGetCommand(String key, byte[] keyBytes, CommandType cmdType, Transcoder transcoder)<T> CommandBinaryCommandFactory. createGetMultiCommand(Collection<String> keys, CountDownLatch latch, CommandType cmdType, Transcoder<T> transcoder)<T> CommandKestrelCommandFactory. createGetMultiCommand(Collection<String> keys, CountDownLatch latch, CommandType cmdType, Transcoder<T> transcoder)<T> CommandTextCommandFactory. createGetMultiCommand(Collection<String> keys, CountDownLatch latch, CommandType cmdType, Transcoder<T> transcoder)CommandBinaryCommandFactory. createIncrDecrCommand(String key, byte[] keyBytes, long amount, long initial, int expTime, CommandType cmdType, boolean noreply)CommandKestrelCommandFactory. createIncrDecrCommand(String key, byte[] keyBytes, long amount, long initial, int expTime, CommandType cmdType, boolean noreply)CommandTextCommandFactory. createIncrDecrCommand(String key, byte[] keyBytes, long amount, long initial, int exptime, CommandType cmdType, boolean noreply)voidCommand. setCommandType(CommandType commandType)Constructors in net.rubyeye.xmemcached.command with parameters of type CommandType Constructor Description Command(String key, byte[] keyBytes, CommandType cmdType, CountDownLatch latch)Command(String key, CommandType commandType, CountDownLatch latch)Command(CommandType cmdType)Command(CommandType cmdType, CountDownLatch latch) -
Uses of CommandType in net.rubyeye.xmemcached.command.binary
Constructors in net.rubyeye.xmemcached.command.binary with parameters of type CommandType Constructor Description BaseBinaryCommand(String key, byte[] keyBytes, CommandType cmdType, CountDownLatch latch, int exp, long cas, Object value, boolean noreply, Transcoder transcoder)BinaryAppendPrependCommand(String key, byte[] keyBytes, CommandType cmdType, CountDownLatch latch, int exp, long cas, Object value, boolean noreply, Transcoder transcoder)BinaryCASCommand(String key, byte[] keyBytes, CommandType cmdType, CountDownLatch latch, int exp, long cas, Object value, boolean noreply, Transcoder transcoder)BinaryDeleteCommand(String key, byte[] keyBytes, long cas, CommandType cmdType, CountDownLatch latch, boolean noreply)BinaryGetAndTouchCommand(String key, byte[] keyBytes, CommandType cmdType, CountDownLatch latch, int exp, boolean noreply)BinaryGetCommand(String key, byte[] keyBytes, CommandType cmdType, CountDownLatch latch, OpCode opCode, boolean noreply)BinaryGetMultiCommand(String key, CommandType cmdType, CountDownLatch latch)BinaryIncrDecrCommand(String key, byte[] keyBytes, long amount, long initial, int expTime, CommandType cmdType, boolean noreply)BinarySetMultiCommand(String key, CommandType cmdType, CountDownLatch latch)BinaryStoreCommand(String key, byte[] keyBytes, CommandType cmdType, CountDownLatch latch, int exp, long cas, Object value, boolean noreply, Transcoder transcoder)BinaryTouchCommand(String key, byte[] keyBytes, CommandType cmdType, CountDownLatch latch, int exp, boolean noreply) -
Uses of CommandType in net.rubyeye.xmemcached.command.kestrel
Constructors in net.rubyeye.xmemcached.command.kestrel with parameters of type CommandType Constructor Description KestrelGetCommand(String key, byte[] keyBytes, CommandType cmdType, CountDownLatch latch, Transcoder<?> transcoder)KestrelSetCommand(String key, byte[] keyBytes, CommandType cmdType, CountDownLatch latch, int exp, long cas, Object value, boolean noreply, Transcoder transcoder) -
Uses of CommandType in net.rubyeye.xmemcached.command.text
Constructors in net.rubyeye.xmemcached.command.text with parameters of type CommandType Constructor Description TextCASCommand(String key, byte[] keyBytes, CommandType cmdType, CountDownLatch latch, int exp, long cas, Object value, boolean noreply, Transcoder transcoder)TextGetCommand(String key, byte[] keyBytes, CommandType cmdType, CountDownLatch latch)TextGetMultiCommand(String key, byte[] keyBytes, CommandType cmdType, CountDownLatch latch, Transcoder transcoder)TextGetOneCommand(String key, byte[] keyBytes, CommandType cmdType, CountDownLatch latch)TextIncrDecrCommand(String key, byte[] keyBytes, CommandType cmdType, CountDownLatch latch, long delta, long initial, boolean noreply)TextStoreCommand(String key, byte[] keyBytes, CommandType cmdType, CountDownLatch latch, int exp, long cas, Object value, boolean noreply, Transcoder transcoder)TextTouchCommand(String key, byte[] keyBytes, CommandType cmdType, CountDownLatch latch, int expTime, boolean noreply) -
Uses of CommandType in net.rubyeye.xmemcached.monitor
Methods in net.rubyeye.xmemcached.monitor with parameters of type CommandType Modifier and Type Method Description voidStatisticsHandler. statistics(CommandType cmdType)voidStatisticsHandler. statistics(CommandType cmdType, int count)
-