com.maxifier.mxcache.impl.caches.def.IntInlineCacheImpl 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.def;
import com.maxifier.mxcache.caches.*;
import com.maxifier.mxcache.impl.MutableStatistics;
import com.maxifier.mxcache.impl.caches.abs.*;
/**
* THIS IS GENERATED CLASS! DON'T EDIT IT MANUALLY!
*
* GENERATED FROM PInlineCacheImpl.template
*
* @author Andrey Yakoushin ([email protected])
* @author Alexander Kochurov ([email protected])
*/
public class IntInlineCacheImpl extends AbstractIntCache {
private Object value = UNDEFINED;
public IntInlineCacheImpl(Object owner, IntCalculatable calculable, MutableStatistics statistics) {
super(owner, calculable, statistics);
}
@Override
public Object load() {
return value;
}
@Override
public void save(Object v) {
value = v;
}
@Override
public void clear() {
value = UNDEFINED;
}
@Override
public int size() {
return value == UNDEFINED ? 0 : 1;
}
}