i.IDBStorage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javaee-rt Show documentation
Show all versions of javaee-rt Show documentation
An Execution Environment for Java SCOREs
package i;
public interface IDBStorage {
void setBytes(byte[] key, byte[] value);
byte[] getBytes(byte[] key);
void setArrayLength(byte[] key, int l);
int getArrayLength(byte[] key);
void flush();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy