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;
}
}