Packages

object SolrSink

Scala 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)(implicit client: SolrClient): Sink[Seq[WriteMessage[T, NotUsed]], Future[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[T](collection: String, settings: SolrUpdateSettings)(implicit client: SolrClient): Sink[Seq[WriteMessage[SolrInputDocument, NotUsed]], Future[Done]]

    Write SolrInputDocuments to Solr.

  3. def typeds[T](collection: String, settings: SolrUpdateSettings, binder: (T) => SolrInputDocument)(implicit client: SolrClient): Sink[Seq[WriteMessage[T, NotUsed]], Future[Done]]

    Write stream elements to Solr.

    Write stream elements to Solr.

    binder

    a conversion function to create SolrInputDocuments of the stream elements