public interface Updatable<E>
| Modifier and Type | Method and Description |
|---|---|
default <A,R> R |
apply(net.openhft.chronicle.core.util.SerializableBiFunction<E,A,R> function,
A arg) |
default <R> R |
apply(net.openhft.chronicle.core.util.SerializableFunction<E,R> function) |
default void |
asyncUpdate(net.openhft.chronicle.core.util.SerializableUpdater<E> updateFunction) |
default <A> void |
asyncUpdate(net.openhft.chronicle.core.util.SerializableUpdaterWithArg<E,A> updateFunction,
A arg) |
default <R> R |
syncUpdate(net.openhft.chronicle.core.util.SerializableUpdater<E> updateFunction,
net.openhft.chronicle.core.util.SerializableFunction<E,R> returnFunction) |
default <UA,RA,R> R |
syncUpdate(net.openhft.chronicle.core.util.SerializableUpdaterWithArg<E,UA> updateFunction,
UA ua,
net.openhft.chronicle.core.util.SerializableBiFunction<E,RA,R> returnFunction,
RA ra) |
default <R> R apply(@NotNull
net.openhft.chronicle.core.util.SerializableFunction<E,R> function)
default void asyncUpdate(@NotNull
net.openhft.chronicle.core.util.SerializableUpdater<E> updateFunction)
default <R> R syncUpdate(@NotNull
net.openhft.chronicle.core.util.SerializableUpdater<E> updateFunction,
@NotNull
net.openhft.chronicle.core.util.SerializableFunction<E,R> returnFunction)
default <A,R> R apply(@NotNull
net.openhft.chronicle.core.util.SerializableBiFunction<E,A,R> function,
A arg)
default <A> void asyncUpdate(@NotNull
net.openhft.chronicle.core.util.SerializableUpdaterWithArg<E,A> updateFunction,
A arg)
Copyright © 2015. All rights reserved.