We welcome our DelegateSyncher overlord

This commit is contained in:
DBotThePony 2024-02-24 22:41:29 +07:00
parent 26a0595742
commit 13d213f5f2
Signed by: DBot
GPG Key ID: DCC23B5715498507
4 changed files with 459 additions and 498 deletions

View File

@ -4,7 +4,7 @@ kotlin.code.style=official
specifyKotlinAsDependency=false
projectGroup=ru.dbotthepony.kommons
projectVersion=2.7.10
projectVersion=2.8.0
guavaDepVersion=33.0.0
gsonDepVersion=2.8.9

File diff suppressed because it is too large Load Diff

View File

@ -83,6 +83,14 @@ class KOptional<T> private constructor(private val _value: T, val isPresent: Boo
}
}
fun valueEquals(other: Any?): Boolean {
if (isPresent) {
return _value == other
}
return false
}
override fun equals(other: Any?): Boolean {
return this === other || other is KOptional<*> && isPresent == other.isPresent && _value == other._value
}

View File

@ -15,7 +15,7 @@ interface ValueObserver<V> : Listenable<V>, Supplier<V>, Observer {
*
* This implementation is not synchronized, calls to [get]/[observe]/[getAndObserve] from multiple threads
* will result in undefined behavior;
* For thread-safe implementation, use [SynchronizedObserved].
* For thread-safe implementation, use [SynchronizedImpl].
*/
class Impl<V>(private val provider: Supplier<V>) : ValueObserver<V> {
private val subs = Listenable.Impl<V>()