aboutsummaryrefslogtreecommitdiff
path: root/mod/src/main/kotlin/moe/nea/ledger/ExpiringValue.kt
diff options
context:
space:
mode:
Diffstat (limited to 'mod/src/main/kotlin/moe/nea/ledger/ExpiringValue.kt')
-rw-r--r--mod/src/main/kotlin/moe/nea/ledger/ExpiringValue.kt30
1 files changed, 30 insertions, 0 deletions
diff --git a/mod/src/main/kotlin/moe/nea/ledger/ExpiringValue.kt b/mod/src/main/kotlin/moe/nea/ledger/ExpiringValue.kt
new file mode 100644
index 0000000..b50b14e
--- /dev/null
+++ b/mod/src/main/kotlin/moe/nea/ledger/ExpiringValue.kt
@@ -0,0 +1,30 @@
+package moe.nea.ledger
+
+import kotlin.time.Duration
+import kotlin.time.Duration.Companion.nanoseconds
+
+class ExpiringValue<T>(private val value: T) {
+ val lastSeenAt: Long = System.nanoTime()
+ val age get() = (System.nanoTime() - lastSeenAt).nanoseconds
+ var taken = false
+ private set
+
+ fun get(expiry: Duration): T? {
+ return if (!taken && age < expiry) value
+ else null
+ }
+
+ companion object {
+ fun <T> empty(): ExpiringValue<T> {
+ val value = ExpiringValue(Unit)
+ value.take()
+ @Suppress("UNCHECKED_CAST")
+ return value as ExpiringValue<T>
+ }
+ }
+
+ fun consume(expiry: Duration): T? = get(expiry)?.also { take() }
+ fun take() {
+ taken = true
+ }
+} \ No newline at end of file