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

org.comroid.api.Creator Maven / Gradle / Ivy

The newest version!
package org.comroid.api;

import java.util.concurrent.CompletableFuture;

public interface Creator extends Provider {
    @Override
    default CompletableFuture get() {
        return create();
    }

    CompletableFuture create();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy