All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.magentys.Memory Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
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