blob: 703c39f4087f7b714a1e377c0567d38b82dcfb52 [file] [log] [blame]
package com.gemstone.gemfire.internal.redis.executor;
import com.gemstone.gemfire.internal.redis.RedisConstants.ArityDef;
public class PExpireExecutor extends ExpireExecutor {
@Override
protected boolean timeUnitMillis() {
return true;
}
@Override
public String getArgsError() {
return ArityDef.PEXPIRE;
}
}