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

io.yawp.driver.api.PersistenceDriver Maven / Gradle / Ivy

There is a newer version: 2.08alpha
Show newest version
package io.yawp.driver.api;

import io.yawp.repository.FutureObject;
import io.yawp.repository.IdRef;

public interface PersistenceDriver {

    void save(Object object);

     FutureObject saveAsync(Object object);

    void destroy(IdRef id);

    FutureObject destroyAsync(IdRef id);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy