
org.openfast.util.Cache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openfast Show documentation
Show all versions of openfast Show documentation
OpenFAST is a 100% Java implementation of the FAST Protocol.
package org.openfast.util;
import org.openfast.FieldValue;
public interface Cache {
boolean containsValue(FieldValue value);
int getIndex(FieldValue value);
int store(FieldValue value);
void store(int index, FieldValue value);
FieldValue lookup(int index);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy