Uses of Class
org.apache.bookkeeper.metastore.Value
-
Packages that use Value Package Description org.apache.bookkeeper.metastore MetaStore-related classes. -
-
Uses of Value in org.apache.bookkeeper.metastore
Methods in org.apache.bookkeeper.metastore that return Value Modifier and Type Method Description Value
Value. clearFields()
Value
Value. merge(Value other)
Merge other value.Value
Value. project(java.util.Set<java.lang.String> fields)
Select parts of fields.Value
Value. setField(java.lang.String field, byte[] data)
Methods in org.apache.bookkeeper.metastore that return types with arguments of type Value Modifier and Type Method Description (package private) static Versioned<Value>
InMemoryMetastoreTable. cloneValue(Value value, Version version, java.util.Set<java.lang.String> fields)
Versioned<Value>
MetastoreTableItem. getValue()
Get the value of the item.Methods in org.apache.bookkeeper.metastore with parameters of type Value Modifier and Type Method Description (package private) static Versioned<Value>
InMemoryMetastoreTable. cloneValue(Value value, Version version, java.util.Set<java.lang.String> fields)
Value
Value. merge(Value other)
Merge other value.void
InMemoryMetastoreTable. put(java.lang.String key, Value value, Version version, MetastoreCallback<Version> cb, java.lang.Object ctx)
void
MetastoreTable. put(java.lang.String key, Value value, Version version, MetastoreCallback<Version> cb, java.lang.Object ctx)
Update a key according to its version.Method parameters in org.apache.bookkeeper.metastore with type arguments of type Value Modifier and Type Method Description void
InMemoryMetastoreTable. get(java.lang.String key, java.util.Set<java.lang.String> fields, MetastoreCallback<Versioned<Value>> cb, java.lang.Object ctx)
void
InMemoryMetastoreTable. get(java.lang.String key, MetastoreCallback<Versioned<Value>> cb, java.lang.Object ctx)
void
InMemoryMetastoreTable. get(java.lang.String key, MetastoreWatcher watcher, MetastoreCallback<Versioned<Value>> cb, java.lang.Object ctx)
void
MetastoreTable. get(java.lang.String key, java.util.Set<java.lang.String> fields, MetastoreCallback<Versioned<Value>> cb, java.lang.Object ctx)
Get specified fields of a key.void
MetastoreTable. get(java.lang.String key, MetastoreCallback<Versioned<Value>> cb, java.lang.Object ctx)
Get all fields of a key.void
MetastoreTable. get(java.lang.String key, MetastoreWatcher watcher, MetastoreCallback<Versioned<Value>> cb, java.lang.Object ctx)
Get all fields of a key.void
InMemoryMetastoreTable. scheduleGet(java.lang.String key, java.util.Set<java.lang.String> fields, MetastoreCallback<Versioned<Value>> cb, java.lang.Object ctx)
void
MetastoreTableItem. setValue(Versioned<Value> value)
Set the value of the item.Constructors in org.apache.bookkeeper.metastore with parameters of type Value Constructor Description Value(Value v)
Constructor parameters in org.apache.bookkeeper.metastore with type arguments of type Value Constructor Description InMemoryMetastoreCursor(java.util.SortedMap<java.lang.String,Versioned<Value>> map, java.util.Set<java.lang.String> fields, java.util.concurrent.ScheduledExecutorService scheduler)
MetastoreTableItem(java.lang.String key, Versioned<Value> value)
-