-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
超时设置的线程重入问题修复 #314
超时设置的线程重入问题修复 #314
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add comment
return executeTimeOut != null && executeTimeOut.isExpired(); | ||
} | ||
|
||
public ExecuteTimeOut getExecuteTimeOut() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
getExecuteTimeOut > getExecuteTimeout
src/main/java/com/ql/util/express/instruction/opdata/OperateDataVirClass.java
Outdated
Show resolved
Hide resolved
src/main/java/com/ql/util/express/instruction/opdata/OperateDataVirClass.java
Outdated
Show resolved
Hide resolved
src/main/java/com/ql/util/express/instruction/IOperateDataCache.java
Outdated
Show resolved
Hide resolved
src/main/java/com/ql/util/express/instruction/OperateDataCacheImpl.java
Outdated
Show resolved
Hide resolved
import com.ql.util.express.InstructionSetContext; | ||
import com.ql.util.express.OperateData; | ||
import com.ql.util.express.RunEnvironment; | ||
import com.ql.util.express.*; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
阿里的开发规约不建议使用import *
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK
#294
将 timeout 设置到 RunEnvironment 对象的属性中, 每个 environment 自己维护自己的超时, 嵌套调用时可以避免相互冲突。