Packages

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])

    indices

    indices being written to

    wrapper

    creates writable feature

Abstract Value Members

  1. abstract def append(feature: T, values: Array[RowKeyValue[_]]): Unit

    Write values derived from the feature

    Write values derived from the feature

    feature

    feature being written

    values

    derived values, one per index

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

    Delete values derived from the feature

    Delete values derived from the feature

    feature

    feature being deleted

    values

    derived values, one per index

    Attributes
    protected
  4. abstract def flush(): Unit
    Definition Classes
    Flushable
    Annotations
    @throws( classOf[java.io.IOException] )
  5. abstract def update(feature: T, values: Array[RowKeyValue[_]], previous: T, previousValues: Array[RowKeyValue[_]]): Unit

    Write values derived from the feature

    Write values derived from the feature

    feature

    feature being written

    values

    derived values, one per index

    previous

    the previous feature being updated/replaced

    previousValues

    derived values for the previous feature

    Attributes
    protected

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def append(feature: SimpleFeature): Unit

    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

    Definition Classes
    BaseIndexWriterIndexWriter
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  7. def delete(feature: SimpleFeature): Unit

    Delete the feature

    Delete the feature

    feature

    feature

    Definition Classes
    BaseIndexWriterIndexWriter
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  17. def toString(): String
    Definition Classes
    AnyRef → Any
  18. def update(updated: SimpleFeature, previous: SimpleFeature): Unit

    Write the feature, replacing a previous version.

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

    updated

    new feature

    previous

    old feature that should be replaced

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

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from IndexWriter

Inherited from Flushable

Inherited from Closeable

Inherited from AutoCloseable

Inherited from AnyRef

Inherited from Any

Ungrouped