put

abstract fun put(key: K, value: V, expireIn: Duration): V?

Inserts an entry into the map that will expire after expireIn amount of time has passed.

Return

The previous value associated with key, or null if there was no mapping for key.

Parameters

key

The key to insert.

value

The value to insert.

expireIn

The duration until expiration occurs.


abstract fun put(key: K, value: V, expireIn: Duration, onExpire: ExpirationMapCallback<K, V>?): V?

Inserts an entry into the map that will expire after expireIn amount of time has passed.

Return

The previous value associated with key, or null if there was no mapping for key.

Parameters

key

The key to insert.

value

The value to insert.

expireIn

The duration until expiration occurs.

onExpire

The ExpirationMapCallback to execute when the element expires.