Status
Current state: Accepted
...
Page properties | |||
---|---|---|---|
|
...
...
|
...
|
Please keep the discussion on the mailing list rather than commenting on the wiki (wiki discussions get unwieldy fast).
...
Comparation of the two implementations:
Solution | Pros | Cons |
based on timer | 1. simple | 1. rely on timer service and more timer instances |
based on DelayQueue | 1. no timer instance | 1. rely on java DelayQueue and Slightly more complex |
Based on DelayQueue with a pull fashion
...