MCPcopy Index your code
hub / github.com/grpc/grpc-java / minimum

Method minimum

api/src/context/java/io/grpc/Deadline.java:148–151  ·  view source on GitHub ↗

Return the minimum deadline of this or an other deadline. They must be created using the same Ticker. @param other deadline to compare with this.

(Deadline other)

Source from the content-addressed store, hash-verified

146 * @param other deadline to compare with {@code this}.
147 */
148 public Deadline minimum(Deadline other) {
149 checkTicker(other);
150 return isBefore(other) ? this : other;
151 }
152
153 /**
154 * Create a new deadline that is offset from {@code this}.

Callers 5

minimumMethod · 0.95
tickersDontMatchMethod · 0.95
minMethod · 0.45
minMethod · 0.45
minMethod · 0.45

Calls 2

checkTickerMethod · 0.95
isBeforeMethod · 0.95

Tested by 2

minimumMethod · 0.76
tickersDontMatchMethod · 0.76