Package org.eclipse.jetty.io
Interface CyclicTimeouts.Expirable
-
- All Known Implementing Classes:
HttpChannel,HttpChannelOverHTTP,HttpExchange
- Enclosing class:
- CyclicTimeouts<T extends CyclicTimeouts.Expirable>
@Deprecated(since="2021-05-27") public static interface CyclicTimeouts.ExpirableDeprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.An entity that may expire.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description longgetExpireNanoTime()Deprecated.Returns the expiration time in nanoseconds.
-
-
-
Method Detail
-
getExpireNanoTime
long getExpireNanoTime()
Deprecated.Returns the expiration time in nanoseconds.
The value to return must be calculated taking into account
System.nanoTime(), for example:expireNanoTime = System.nanoTime() + timeoutNanosReturning
Long.MAX_VALUEindicates that this entity does not expire.- Returns:
- the expiration time in nanoseconds, or
Long.MAX_VALUEif this entity does not expire
-
-