public InvalidateCommand buildInvalidateFromL1Command(boolean forRehash, Collection<Object> keys) {
return new InvalidateL1Command(forRehash, dataContainer, configuration, distributionManager, notifier, keys);
}
public ReplaceCommand buildReplaceCommand(Object key, Object oldValue, Object newValue, long lifespan, long maxIdleTimeMillis, Set<Flag> flags) {
return new ReplaceCommand(key, oldValue, newValue, lifespan, maxIdleTimeMillis, flags);
}