{@inheritDoc} Both deadlines must be created with the same Ticker.
(Deadline that)
| 225 | * <p>Both deadlines must be created with the same {@link Ticker}. |
| 226 | */ |
| 227 | @Override |
| 228 | public int compareTo(Deadline that) { |
| 229 | checkTicker(that); |
| 230 | return Long.compare(this.deadlineNanos, that.deadlineNanos); |
| 231 | } |
| 232 | |
| 233 | @Override |
| 234 | public int hashCode() { |