*/
@SuppressWarnings("unchecked")
public final Command createCASCommand(final String key,
final byte[] keyBytes, final int exp, final Object value, long cas,
boolean noreply, Transcoder transcoder) {
return new TextCASCommand(key, keyBytes, CommandType.CAS,
new CountDownLatch(1), exp, cas, value, noreply, transcoder);
}