Packages

object SolrSink

Java API

Source
SolrSink.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SolrSink
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def beans[T](collection: String, settings: SolrUpdateSettings, client: SolrClient, clazz: Class[T]): Sink[List[WriteMessage[T, NotUsed]], CompletionStage[Done]]

    Write Java bean stream elements to Solr.

    Write Java bean stream elements to Solr. The stream element classes must be annotated for use with org.apache.solr.client.solrj.beans.DocumentObjectBinder for conversion.

  2. def documents(collection: String, settings: SolrUpdateSettings, client: SolrClient): Sink[List[WriteMessage[SolrInputDocument, NotUsed]], CompletionStage[Done]]

    Write SolrInputDocuments to Solr.

  3. def typeds[T](collection: String, settings: SolrUpdateSettings, binder: Function[T, SolrInputDocument], client: SolrClient, clazz: Class[T]): Sink[List[WriteMessage[T, NotUsed]], CompletionStage[Done]]

    Write stream elements to Solr.

    Write stream elements to Solr.

    binder

    a conversion function to create SolrInputDocuments of the stream elements