Class

org.locationtech.geomesa.index.api.IndexAdapter

BaseIndexWriter

Related Doc: package IndexAdapter

Permalink

abstract class BaseIndexWriter[T <: WritableFeature] extends IndexWriter

Writes features to a particular back-end data store implementation

Linear Supertypes
IndexWriter, Flushable, Closeable, AutoCloseable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. BaseIndexWriter
  2. IndexWriter
  3. Flushable
  4. Closeable
  5. AutoCloseable
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new BaseIndexWriter(indices: Seq[GeoMesaFeatureIndex[_, _]], wrapper: FeatureWrapper[T])

    Permalink

    indices

    indices being written to

    wrapper

    creates writable feature

Abstract Value Members

  1. abstract def close(): Unit

    Permalink
    Definition Classes
    Closeable → AutoCloseable
    Annotations
    @throws( classOf[java.io.IOException] )
  2. abstract def delete(feature: T, values: Array[RowKeyValue[_]]): Unit

    Permalink

    Delete values derived from the feature

    Delete values derived from the feature

    feature

    feature being deleted

    values

    derived values, one per index

    Attributes
    protected
  3. abstract def flush(): Unit

    Permalink
    Definition Classes
    Flushable
    Annotations
    @throws( classOf[java.io.IOException] )
  4. abstract def write(feature: T, values: Array[RowKeyValue[_]], update: Boolean): Unit

    Permalink

    Write values derived from the feature

    Write values derived from the feature

    feature

    feature being written

    values

    derived values, one per index

    update

    true if this is an update to an existing feature

    Attributes
    protected

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def delete(feature: SimpleFeature): Unit

    Permalink

    Delete the feature

    Delete the feature

    feature

    feature

    Definition Classes
    BaseIndexWriterIndexWriter
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  11. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  12. val indices: Seq[GeoMesaFeatureIndex[_, _]]

    Permalink

    indices being written to

  13. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  15. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  18. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  19. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. def write(feature: SimpleFeature, update: Boolean): Unit

    Permalink

    Write the feature.

    Write the feature. This method should ensure that the feature is not partially written, by first validating that all of the indices can index it successfully

    feature

    feature

    update

    true if this is an update to an existing feature

    Definition Classes
    BaseIndexWriterIndexWriter

Inherited from IndexWriter

Inherited from Flushable

Inherited from Closeable

Inherited from AutoCloseable

Inherited from AnyRef

Inherited from Any

Ungrouped