com.microsoft.durabletask.TaskOrchestratorResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of durabletask-client Show documentation
Show all versions of durabletask-client Show documentation
This package contains classes and interfaces for building Durable Task orchestrations in Java.
package com.microsoft.durabletask;
import com.microsoft.durabletask.implementation.protobuf.OrchestratorService;
import java.util.Collection;
import java.util.Collections;
final class TaskOrchestratorResult {
private final Collection actions;
private final String customStatus;
public TaskOrchestratorResult(Collection actions, String customStatus) {
this.actions = Collections.unmodifiableCollection(actions);;
this.customStatus = customStatus;
}
public Collection getActions() {
return this.actions;
}
public String getCustomStatus() {
return this.customStatus;
}
}