公告板
版本库
filestore
活动
搜索
登录
main
/
PowerJob
定时任务
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
first commit
WangHan
2024-09-12
d5855a4926926698b740bc6c7ba489de47adb68b
[PowerJob.git]
/
powerjob-remote
/
powerjob-remote-framework
/
src
/
main
/
java
/
tech
/
powerjob
/
remote
/
framework
/
actor
/
ProcessType.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package tech.powerjob.remote.framework.actor;
/**
* 处理器类型
*
* @author tjq
* @since 2023/1/1
*/
public enum ProcessType {
/**
* 阻塞式
*/
BLOCKING,
/**
* 非阻塞式
*/
NO_BLOCKING
}