
org.epics.pvmanager.ValueCache Maven / Gradle / Ivy
/**
* Copyright (C) 2010-14 pvmanager developers. See COPYRIGHT.TXT
* All rights reserved. Use is subject to license terms. See LICENSE.TXT
*/
package org.epics.pvmanager;
/**
* Represent a building block that can store a particular value
*
* @param the type of the value held by the cache
* @author carcassi
*/
public interface ValueCache extends ReadFunction, WriteFunction {
/**
* The type of objects that this cache can contain.
*
* @return the class token
*/
public Class getType();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy