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

io.aeon.experiment.mixture.HPerformer Maven / Gradle / Ivy

The newest version!
package io.aeon.experiment.mixture;

import io.horizon.specification.modeler.HModel;
import io.vertx.core.Future;
import io.vertx.up.unity.Ux;

/**
 * @author Lang
 */
public interface HPerformer {
    /* 「Read Model」Async */
    default Future fetchAsync(final String identifier) {
        return Ux.future(this.fetch(identifier));
    }

    /* 「Read Model」Sync */
    T fetch(String identifier);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy