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

io.yawp.repository.AsyncRepository Maven / Gradle / Ivy

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

public class AsyncRepository {

	Repository r;

	public AsyncRepository(Repository r) {
		this.r = r;
	}

	public  FutureObject save(T object) {
		return r.saveAsync(object);
	}

	public  FutureObject saveWithHooks(T object) {
		return r.saveAsyncWithHooks(object);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy