
io.magentys.Memory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cherry Show documentation
Show all versions of cherry Show documentation
A syntactical sugar project for BDD oriented tests
package io.magentys;
import io.magentys.utils.Any;
/**
* Created by kostasmamalis on 01/04/16.
*/
public interface Memory {
void remember(final KEY key, final VALUE value);
void remember(final KEY key, final Any any);
VALUE recall(KEY key, Class clazz);
boolean isEmpty();
void transferTo(Memory memory, KEY key);
Any recall(KEY key);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy