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

io.quarkiverse.temporal.deployment.WorkflowImplBuildItem Maven / Gradle / Ivy

The newest version!
package io.quarkiverse.temporal.deployment;

import io.quarkus.builder.item.MultiBuildItem;

public final class WorkflowImplBuildItem extends MultiBuildItem {

    public WorkflowImplBuildItem(Class workflow, Class implementation, String[] workers) {
        this.workflow = workflow;
        this.implementation = implementation;
        this.workers = workers;
    }

    public final Class workflow;
    public final Class implementation;
    public final String[] workers;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy