EphemeralMapTracker

constructor(ttlMs: Long, clock: () -> Long = defaultClock())

Parameters

ttlMs

expiry window in milliseconds. An entry is considered expired when now - receiveTime >= ttlMs. The boundary is exclusive: exactly at ttlMs ms the entry is expired.

clock

injectable monotonic time source (milliseconds).

Type Parameters

V

the presence value type.