Commit 23e6cee5 authored by yanzg's avatar yanzg

表结构修改

parent a57224c3
...@@ -108,6 +108,14 @@ public class CacheLock<T, M> implements Runnable { ...@@ -108,6 +108,14 @@ public class CacheLock<T, M> implements Runnable {
return waitCount; return waitCount;
} }
public int getMaxWaitCount() {
return maxWaitCount;
}
public void setMaxWaitCount(int maxWaitCount) {
this.maxWaitCount = maxWaitCount;
}
/** /**
* 开始执行,每个关键字会等待其他关键字执行完成后执行 * 开始执行,每个关键字会等待其他关键字执行完成后执行
* *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment