Packages

object NoOpMetadata extends NoOpMetadata[Any]

Linear Supertypes
NoOpMetadata[Any], GeoMesaMetadata[Any], Closeable, AutoCloseable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NoOpMetadata
  2. NoOpMetadata
  3. GeoMesaMetadata
  4. Closeable
  5. AutoCloseable
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def backup(typeName: String): Unit

    Create a back up of this metadata

    Create a back up of this metadata

    typeName

    simple feature type name

    Definition Classes
    NoOpMetadataGeoMesaMetadata
  2. def close(): Unit
    Definition Classes
    NoOpMetadata → Closeable → AutoCloseable
  3. def delete(typeName: String): Unit

    Deletes all values associated with a given feature type

    Deletes all values associated with a given feature type

    typeName

    simple feature type name

    Definition Classes
    NoOpMetadataGeoMesaMetadata
  4. def getFeatureTypes: Array[String]

    Returns existing simple feature types

    Returns existing simple feature types

    returns

    simple feature type names

    Definition Classes
    NoOpMetadataGeoMesaMetadata
  5. def insert(typeName: String, kvPairs: Map[String, Any]): Unit

    Insert multiple values at once - may be more efficient than single inserts

    Insert multiple values at once - may be more efficient than single inserts

    typeName

    simple feature type name

    kvPairs

    key/values

    Definition Classes
    NoOpMetadataGeoMesaMetadata
  6. def insert(typeName: String, key: String, value: Any): Unit

    Insert a value - any existing value under the given key will be overwritten

    Insert a value - any existing value under the given key will be overwritten

    typeName

    simple feature type name

    key

    key

    value

    value

    Definition Classes
    NoOpMetadataGeoMesaMetadata
  7. def invalidateCache(typeName: String, key: String): Unit

    Invalidates any cached value for the given key

    Invalidates any cached value for the given key

    typeName

    simple feature type name

    key

    key

    Definition Classes
    NoOpMetadataGeoMesaMetadata
  8. def read(typeName: String, key: String, cache: Boolean): Option[Any]

    Reads a value

    Reads a value

    typeName

    simple feature type name

    key

    key

    cache

    may return a cached value if true, otherwise may use a slower lookup

    returns

    value, if present

    Definition Classes
    NoOpMetadataGeoMesaMetadata
  9. def readRequired(typeName: String, key: String): Any

    Reads a value.

    Reads a value. Throws an exception if value is missing

    typeName

    simple feature type name

    key

    key

    returns

    value

    Definition Classes
    GeoMesaMetadata
  10. def remove(typeName: String, keys: Seq[String]): Unit

    Delete multiple keys at once - may be more efficient than single deletes

    Delete multiple keys at once - may be more efficient than single deletes

    typeName

    simple feature type name

    keys

    keys

    Definition Classes
    NoOpMetadataGeoMesaMetadata
  11. def remove(typeName: String, key: String): Unit

    Delete a key

    Delete a key

    typeName

    simple feature type name

    key

    key

    Definition Classes
    NoOpMetadataGeoMesaMetadata
  12. def resetCache(): Unit

    table cache should be cleared up when catalog is deleted in database

    table cache should be cleared up when catalog is deleted in database

    Definition Classes
    NoOpMetadataGeoMesaMetadata
  13. def scan(typeName: String, prefix: String, cache: Boolean): Seq[(String, Any)]

    Scan for keys starting with a given prefix

    Scan for keys starting with a given prefix

    typeName

    simple feature type name

    prefix

    key prefix

    cache

    may return a cached value if true, otherwise may use a slower lookup

    returns

    keys -> values

    Definition Classes
    NoOpMetadataGeoMesaMetadata