Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
熊鹏飞
/
xxljob220
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
7bd120d1
authored
May 15, 2018
by
xuxueli
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
任务线程停止变量修饰符优化
parent
22da65c2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
doc/XXL-JOB官方文档.md
xxl-job-core/src/main/java/com/xxl/job/core/thread/JobThread.java
doc/XXL-JOB官方文档.md
View file @
7bd120d1
## 《分
布式任务调度平台XXL-JOB》
## 《分
布式任务调度平台XXL-JOB》
...
...
@@ -1201,6 +1201,7 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段
-
10、底层LocalCache组件兼容性优化,支持jdk、jdk10编译部署;
-
11、任务回调结果优化,支持展示在Rolling log中,方便问题排查;
-
12、脚本任务异常Log输出优化;
-
13、任务线程停止变量修饰符优化;
### TODO LIST
...
...
xxl-job-core/src/main/java/com/xxl/job/core/thread/JobThread.java
View file @
7bd120d1
...
...
@@ -30,7 +30,7 @@ public class JobThread extends Thread{
private
LinkedBlockingQueue
<
TriggerParam
>
triggerQueue
;
private
ConcurrentHashSet
<
Integer
>
triggerLogIdSet
;
// avoid repeat trigger for the same TRIGGER_LOG_ID
private
boolean
toStop
=
false
;
private
volatile
boolean
toStop
=
false
;
private
String
stopReason
;
private
boolean
running
=
false
;
// if running job
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment