We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82018f3 commit 95b409aCopy full SHA for 95b409a
readme.md
@@ -1,4 +1,4 @@
1
-# 轻量级任务调度框架
+# 轻量级任务调度框架
2
3
## 框架设计
4
框架对整个任务调度的过程进行4种抽象。
@@ -58,6 +58,10 @@
58
59
60
## Usage
61
+```
62
+go get -u github.com/memory-overflow/light-task-scheduler
63
64
+
65
66
### 构建任务调度器
67
@@ -78,11 +82,6 @@ func MakeScheduler(
78
82
79
83
使用框架预制的队列容器和函数执行器可以轻松实现一个函数的调度。参考 [a+b example](https://github.com/memory-overflow/light-task-scheduler/blob/develop/example/add_example/main.go)。
80
84
81
-## Usage
-```
-go get -u github.com/memory-overflow/light-task-scheduler
85
-
86
87
### Example: 使用内存容器实现视频裁剪异步任务调度
88
本例子演示如何用本框架实现一个持久化的任务调度系统。包含一个简单的 web 管理界面。
0 commit comments