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

io.vertx.tp.workflow.uca.deployment.DeployOn Maven / Gradle / Ivy

The newest version!
package io.vertx.tp.workflow.uca.deployment;

import cn.vertxup.workflow.cv.WfPool;
import io.vertx.core.Future;

/**
 * @author Lang
 */
public interface DeployOn {

    static DeployOn get(final String folder) {
        return WfPool.CC_DEPLOY.pick(() -> new DeployBpmnService(folder), folder);
    }

    // Deployment with service
    Future initialize();

    // Bind tentId
    default DeployOn tenant(final String tenantId) {
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy