public class ReadonlyTableStore<T extends Metadata> extends Object implements TableStore<T>
Constructor and Description |
---|
ReadonlyTableStore(T metadata) |
Modifier and Type | Method and Description |
---|---|
net.openhft.chronicle.core.values.LongValue |
acquireValueFor(CharSequence key)
Acquire
LongValue mapped to underlying file, providing atomic operations on the value that is shared
across threads and/or JVMs. |
net.openhft.chronicle.bytes.MappedBytes |
bytes() |
void |
close() |
<R> R |
doWithExclusiveLock(Function<TableStore<T>,? extends R> code)
Acquires file-system level lock on the underlying file, to prevent concurrent access from multiple processes.
|
String |
dump() |
File |
file() |
T |
metadata() |
long |
refCount() |
void |
release() |
void |
reserve() |
void |
writeMarshallable(net.openhft.chronicle.wire.WireOut wire) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
public ReadonlyTableStore(T metadata)
public T metadata()
metadata
in interface TableStore<T extends Metadata>
public void close()
close
in interface Closeable
close
in interface AutoCloseable
public net.openhft.chronicle.core.values.LongValue acquireValueFor(CharSequence key)
TableStore
LongValue
mapped to underlying file, providing atomic operations on the value that is shared
across threads and/or JVMs.
Note: The implementation of this method is not required to guarantee that if the value does not exist in the file,
it will create one and only one value in the file in case of concurrent access. On the contrary, it's possible
that different threads or processes acquire LongValue
s pointing to different fields in the underlying
file. To prevent this, it is advised to use TableStore.doWithExclusiveLock(Function)
to wrap calls to this method,
which will ensure exclusive access to file while initially acquiring values.acquireValueFor
in interface TableStore<T extends Metadata>
key
- the key of the valueLongValue
object pointing to particular location in mapped underlying filepublic <R> R doWithExclusiveLock(Function<TableStore<T>,? extends R> code)
TableStore
TableStore.acquireValueFor(CharSequence)
calls, to atomically acquire
multiple values.doWithExclusiveLock
in interface TableStore<T extends Metadata>
R
- result typecode
- code block to execute using locked table store@Nullable public File file()
file
in interface CommonStore
@NotNull public net.openhft.chronicle.bytes.MappedBytes bytes()
bytes
in interface CommonStore
@NotNull public String dump()
dump
in interface CommonStore
public void reserve() throws IllegalStateException
reserve
in interface net.openhft.chronicle.core.ReferenceCounted
IllegalStateException
public void release() throws IllegalStateException
release
in interface net.openhft.chronicle.core.ReferenceCounted
IllegalStateException
public long refCount()
refCount
in interface net.openhft.chronicle.core.ReferenceCounted
public void writeMarshallable(@NotNull net.openhft.chronicle.wire.WireOut wire)
writeMarshallable
in interface net.openhft.chronicle.wire.WriteMarshallable
Copyright © 2018. All rights reserved.