org.ehcache.impl.config.loaderwriter.writebehind.DefaultBatchingConfiguration Maven / Gradle / Ivy
Show all versions of ehcache-impl Show documentation
/*
* Copyright Terracotta, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.ehcache.impl.config.loaderwriter.writebehind;
import java.util.concurrent.TimeUnit;
import org.ehcache.spi.loaderwriter.WriteBehindConfiguration.BatchingConfiguration;
/**
* Configuration class for write-behind batching.
*
* Enables configuring write-behind batching, first by specifying the batch size.
* Then a write delay must be configured. It will indicate how long an incomplete batch will wait for extra operations.
* Finally coalescing can be configure which will make the batch forget all but the last operation on a per key basis.
*/
public class DefaultBatchingConfiguration implements BatchingConfiguration {
private final long maxDelay;
private final TimeUnit maxDelayUnit;
private final int batchSize;
private final boolean coalescing;
/**
* Creates a new configuration with the provided parameters.
*
* @param maxDelay the maximum write delay quantity
* @param maxDelayUnit the maximu write delay unit
* @param batchSize the batch size
* @param coalescing whether the batch is to be coalesced
*/
public DefaultBatchingConfiguration(long maxDelay, TimeUnit maxDelayUnit, int batchSize, boolean coalescing) {
this.maxDelay = maxDelay;
this.maxDelayUnit = maxDelayUnit;
this.batchSize = batchSize;
this.coalescing = coalescing;
}
/**
* {@inheritDoc}
*/
@Override
public long getMaxDelay() {
return maxDelay;
}
/**
* {@inheritDoc}
*/
@Override
public TimeUnit getMaxDelayUnit() {
return maxDelayUnit;
}
/**
* {@inheritDoc}
*/
@Override
public boolean isCoalescing() {
return coalescing;
}
/**
* {@inheritDoc}
*/
@Override
public int getBatchSize() {
return batchSize;
}
}