Packages

object ElasticsearchSource

Scala API to create Elasticsearch sources.

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

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 apply(indexName: String, typeName: Option[String], searchParams: Map[String, String], settings: ElasticsearchSourceSettings)(implicit elasticsearchClient: RestClient): Source[ReadResult[JsObject], NotUsed]

    Creates a akka.stream.scaladsl.Source from Elasticsearch that streams ReadResults of Spray's spray.json.JsObject.

    Creates a akka.stream.scaladsl.Source from Elasticsearch that streams ReadResults of Spray's spray.json.JsObject. Alias of create.

    Example of searchParams-usage: Map( "query" -> """{"match_all": {}}""" ) Map( "query" -> """{"match_all": {}}""", "_source" -> """ ["fieldToInclude", "anotherFieldToInclude"] """ )

  5. def apply(indexName: String, typeName: String, query: String, settings: ElasticsearchSourceSettings = ElasticsearchSourceSettings.Default)(implicit elasticsearchClient: RestClient): Source[ReadResult[JsObject], NotUsed]

    Creates a akka.stream.scaladsl.Source from Elasticsearch that streams ReadResults of Spray's spray.json.JsObject.

    Creates a akka.stream.scaladsl.Source from Elasticsearch that streams ReadResults of Spray's spray.json.JsObject. Alias of create.

  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  8. def create(indexName: String, typeName: Option[String], searchParams: Map[String, String], settings: ElasticsearchSourceSettings)(implicit elasticsearchClient: RestClient): Source[ReadResult[JsObject], NotUsed]

    Creates a akka.stream.scaladsl.Source from Elasticsearch that streams ReadResults of Spray's spray.json.JsObject.

    Creates a akka.stream.scaladsl.Source from Elasticsearch that streams ReadResults of Spray's spray.json.JsObject.

    Example of searchParams-usage: Map( "query" -> """{"match_all": {}}""" ) Map( "query" -> """{"match_all": {}}""", "_source" -> """ ["fieldToInclude", "anotherFieldToInclude"] """ )

  9. def create(indexName: String, typeName: Option[String], query: String, settings: ElasticsearchSourceSettings)(implicit elasticsearchClient: RestClient): Source[ReadResult[JsObject], NotUsed]

    Creates a akka.stream.scaladsl.Source from Elasticsearch that streams ReadResults of Spray's spray.json.JsObject.

  10. def create(indexName: String, typeName: String, query: String, settings: ElasticsearchSourceSettings = ElasticsearchSourceSettings.Default)(implicit elasticsearchClient: RestClient): Source[ReadResult[JsObject], NotUsed]

    Creates a akka.stream.scaladsl.Source from Elasticsearch that streams ReadResults of Spray's spray.json.JsObject.

  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  21. def toString(): String
    Definition Classes
    AnyRef → Any
  22. def typed[T](indexName: String, typeName: Option[String], searchParams: Map[String, String], settings: ElasticsearchSourceSettings)(implicit elasticsearchClient: RestClient, sprayJsonReader: JsonReader[T]): Source[ReadResult[T], NotUsed]

    Creates a akka.stream.scaladsl.Source from Elasticsearch that streams ReadResults of type T converted by Spray's spray.json.JsonReader

    Creates a akka.stream.scaladsl.Source from Elasticsearch that streams ReadResults of type T converted by Spray's spray.json.JsonReader

    Example of searchParams-usage: Map( "query" -> """{"match_all": {}}""" ) Map( "query" -> """{"match_all": {}}""", "_source" -> """ ["fieldToInclude", "anotherFieldToInclude"] """ )

  23. def typed[T](indexName: String, typeName: Option[String], query: String, settings: ElasticsearchSourceSettings)(implicit elasticsearchClient: RestClient, sprayJsonReader: JsonReader[T]): Source[ReadResult[T], NotUsed]

    Creates a akka.stream.scaladsl.Source from Elasticsearch that streams ReadResults of type T converted by Spray's spray.json.JsonReader

  24. def typed[T](indexName: String, typeName: String, query: String, settings: ElasticsearchSourceSettings = ElasticsearchSourceSettings.Default)(implicit elasticsearchClient: RestClient, reader: JsonReader[T]): Source[ReadResult[T], NotUsed]

    Creates a akka.stream.scaladsl.Source from Elasticsearch that streams ReadResults of type T converted by Spray's spray.json.JsonReader

  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped