durable-functions
Version:
Durable Functions library for Node.js Azure Functions
12 lines • 422 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.WhenAllAction = void 0;
const ActionType_1 = require("./ActionType");
class WhenAllAction {
constructor(tasks) {
this.actionType = ActionType_1.ActionType.WhenAll;
this.compoundActions = tasks.map((t) => t.actionObj);
}
}
exports.WhenAllAction = WhenAllAction;
//# sourceMappingURL=WhenAllAction.js.map
;