com.maxifier.mxcache.storage.elementlocked.BooleanFloatElementLockedStorage 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.storage.elementlocked;
import com.maxifier.mxcache.storage.*;
/**
* THIS IS GENERATED CLASS! DON'T EDIT IT MANUALLY!
*
* GENERATED FROM P2PStorage.template
*
*
* This is a basic implementation of cache storage. It is very similar to a usual map.
* It supports two main operations: load and save for corresponding key and value types.
*
* The content of the storage should not be altered internally between invocations to isCalculated and load.
*
*
* @author Andrey Yakoushin ([email protected])
* @author Alexander Kochurov ([email protected])
*/
public interface BooleanFloatElementLockedStorage extends BooleanFloatStorage, ElementLockedStorage {
/**
* This method is invoked only after corresponding call to isCalculated().
* It is guaranteed that it would be called with corresponding lock held.
* The behavior in case of element not present in cache is not defined.
*/
void lock(boolean key);
/**
*
This method should save a value to a cache
* It is guaranteed that it would be called with corresponding lock held.
*/
void unlock(boolean key);
}