com.maxifier.mxcache.impl.caches.storage.StorageFloatCacheImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mxcache-runtime Show documentation
Show all versions of mxcache-runtime Show documentation
Constains all classes necessary for launching a MxCache-instrumentated application
/*
* Copyright (c) 2008-2014 Maxifier Ltd. All Rights Reserved.
*/
package com.maxifier.mxcache.impl.caches.storage;
import com.maxifier.mxcache.impl.MutableStatistics;
import com.maxifier.mxcache.impl.caches.abs.*;
import com.maxifier.mxcache.caches.*;
import com.maxifier.mxcache.storage.*;
import com.maxifier.mxcache.interfaces.Statistics;
import com.maxifier.mxcache.interfaces.StatisticsHolder;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
/**
* THIS IS GENERATED CLASS! DON'T EDIT IT MANUALLY!
*
* GENERATED FROM StorageP2PCache.template
*
* @author Andrey Yakoushin ([email protected])
* @author Alexander Kochurov ([email protected])
*/
public class StorageFloatCacheImpl extends AbstractFloatCache implements StorageHolder {
private static final long serialVersionUID = 100L;
private ObjectStorage storage;
public StorageFloatCacheImpl(Object owner, FloatCalculatable calculatable, @Nonnull MutableStatistics statistics) {
super(owner, calculatable, statistics);
}
@Override
public void setStorage(@Nonnull ObjectStorage storage) {
if (this.storage != null) {
throw new UnsupportedOperationException("Storage already set");
}
this.storage = storage;
}
@Override
public Object load() {
return storage.load();
}
@Override
public void save(Object value) {
storage.save(value);
}
@Override
public void clear() {
storage.clear();
}
@Override
public int size() {
return storage.size();
}
@Nullable
@Override
public Statistics getStatistics() {
if (storage instanceof StatisticsHolder) {
return ((StatisticsHolder)storage).getStatistics();
}
return super.getStatistics();
}
}