@1amageek/flow 中文文档教程

发布于 7年前 浏览 24 项目主页 更新于 3年前

flow.ts

Flow 支持结构化脚本的编码。

Installation

yarn add @1amageek/flow

Usage

class Item implements Flow.Dependency {
    status?: string
}
var item: Item = new Item()

const step0: Flow.Step<Item> = new Flow.Step((item) => {
    // Do something
    return item
})

const step1: Flow.Step<Item> = new Flow.Step( async (item) => {
    try {
        return await asyncFunction()
    } catch(err) {
        // Error handling
        throw(err)
    }
})

const step2: Flow.Step<Item> = new Flow.Step((item) => {
    // Do something
    return item
})

const flow: Flow.Line<Item> = new Flow.Line([step0, step1, step2])

try {
    await flow.run(item)
} catch(error) {
    // Error handling
}   

flow.ts

Flow enables coding of structured scripts.

Installation

yarn add @1amageek/flow

Usage

class Item implements Flow.Dependency {
    status?: string
}
var item: Item = new Item()

const step0: Flow.Step<Item> = new Flow.Step((item) => {
    // Do something
    return item
})

const step1: Flow.Step<Item> = new Flow.Step( async (item) => {
    try {
        return await asyncFunction()
    } catch(err) {
        // Error handling
        throw(err)
    }
})

const step2: Flow.Step<Item> = new Flow.Step((item) => {
    // Do something
    return item
})

const flow: Flow.Line<Item> = new Flow.Line([step0, step1, step2])

try {
    await flow.run(item)
} catch(error) {
    // Error handling
}   
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文