com.sksamuel.elastic4s

ElasticClient

class ElasticClient extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ElasticClient
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ElasticClient(client: Client, timeout: Long)

Type Members

  1. class SyncClient extends AnyRef

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 admin: AdminClient

  5. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  6. def bulk(requests: BulkCompatibleDefinition*): Future[BulkResponse]

  7. val client: Client

  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def close(index: String): Future[CloseIndexResponse]

  10. def close(): Unit

  11. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  13. def execute(req: MultiGetDefinition): Future[MultiGetResponse]

  14. def execute(req: MoreLikeThisRequest): Future[SearchResponse]

  15. def execute(req: UpdateRequest): Future[UpdateResponse]

  16. def execute(req: ValidateQueryRequest): Future[ValidateQueryResponse]

  17. def execute(gets: GetDefinition*): Future[MultiGetResponse]

  18. def execute(builder: GetDefinition): Future[GetResponse]

    Executes a Scala DSL get and returns a scala Future with the GetResponse.

    Executes a Scala DSL get and returns a scala Future with the GetResponse.

    builder

    a GetDefinition from the Scala DSL

    returns

    a Future providing an GetResponse

  19. def execute(req: CountRequest): Future[CountResponse]

    Executes a Java API CountRequest and returns a scala Future with the CountResponse.

    Executes a Java API CountRequest and returns a scala Future with the CountResponse.

    req

    a CountRequest from the Java client

    returns

    a Future providing an CountResponse

  20. def execute(req: SearchRequest, callback: ActionListener[SearchResponse]): Unit

  21. def execute(req: SearchRequest): Future[SearchResponse]

    Executes a Java API SearchRequest and returns a scala Future with the SearchResponse.

    Executes a Java API SearchRequest and returns a scala Future with the SearchResponse.

    req

    a SearchRequest from the Java clientl

    returns

    a Future providing an SearchResponse

  22. def execute(req: IndexRequest, callback: ActionListener[IndexResponse]): Unit

  23. def execute(req: IndexRequest): Future[IndexResponse]

    Indexes a Java IndexRequest and returns a scala Future with the IndexResponse.

    Indexes a Java IndexRequest and returns a scala Future with the IndexResponse.

    req

    an IndexRequest from the Java client

    returns

    a Future providing an IndexResponse

  24. def execute[Req <: ActionRequest[Req], Res <: ActionResponse, Builder <: ActionRequestBuilder[Req, Res, Builder]](requestDefinition: IndicesRequestDefinition[Req, Res, Builder], callback: ActionListener[Res]): Unit

  25. def execute[Req <: ActionRequest[Req], Res <: ActionResponse, Builder <: ActionRequestBuilder[Req, Res, Builder]](requestDefinition: IndicesRequestDefinition[Req, Res, Builder]): Future[Res]

    Executes a Scala DSL IndicesRequestDefinition and returns a scala Future with corresponding ActionResponse.

    Executes a Scala DSL IndicesRequestDefinition and returns a scala Future with corresponding ActionResponse.

    requestDefinition

    a RequestDefinition from the Scala DSL

    returns

    a Future providing corresponding ActionResponse

  26. def execute[Req <: ActionRequest[Req], Res <: ActionResponse, Builder <: ActionRequestBuilder[Req, Res, Builder]](requestDefinition: RequestDefinition[Req, Res, Builder], callback: ActionListener[Res]): Unit

  27. def execute[Req <: ActionRequest[Req], Res <: ActionResponse, Builder <: ActionRequestBuilder[Req, Res, Builder]](requestDefinition: RequestDefinition[Req, Res, Builder]): Future[Res]

    Executes a Scala DSL RequestDefinition and returns a scala Future with corresponding ActionResponse.

    Executes a Scala DSL RequestDefinition and returns a scala Future with corresponding ActionResponse.

    requestDefinition

    a RequestDefinition from the Scala DSL

    returns

    a Future providing corresponding ActionResponse

  28. def exists(indexes: String*): Future[IndicesExistsResponse]

  29. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  30. def flush(indexes: String*): Future[FlushResponse]

  31. def get(req: GetRequest): Future[GetResponse]

    Executes a Java API GetRequest and returns a scala Future with the GetResponse.

    Executes a Java API GetRequest and returns a scala Future with the GetResponse.

    req

    a GetRequest from the Java client

    returns

    a Future providing an GetResponse

  32. final def getClass(): Class[_]

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

    Definition Classes
    AnyRef → Any
  34. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  35. def java: Client

  36. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  37. final def notify(): Unit

    Definition Classes
    AnyRef
  38. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  39. def open(index: String): Future[OpenIndexResponse]

  40. def putMapping(indexes: String*)(mapping: MappingDefinition): Future[PutMappingResponse]

  41. def refresh(indexes: String*): Future[RefreshResponse]

  42. def searchScroll(scrollId: String, keepAlive: String): Future[SearchResponse]

  43. def searchScroll(scrollId: String): Future[SearchResponse]

  44. def segments(indexes: String*): Future[IndicesSegmentResponse]

  45. def shutdown(nodeIds: String*): Future[NodesShutdownResponse]

  46. def shutdown: Future[NodesShutdownResponse]

  47. def sync(implicit duration: Duration = 10.seconds): SyncClient

  48. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  49. var timeout: Long

  50. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def delete(d: ElasticDsl.DeleteByQueryDefinition): Future[DeleteByQueryResponse]

    Annotations
    @deprecated
    Deprecated

    (Since version 1.0) use execute method

  2. def delete(d: ElasticDsl.DeleteByIdDefinition): Future[DeleteResponse]

    Annotations
    @deprecated
    Deprecated

    (Since version 1.0) use execute method

  3. def deleteIndex(d: DeleteIndexDefinition): Future[DeleteIndexResponse]

    Annotations
    @deprecated
    Deprecated

    (Since version 1.0) use execute method

  4. def get(gets: GetDefinition*): Future[MultiGetResponse]

    Annotations
    @deprecated
    Deprecated

    (Since version 1.0) use execute method with multiget block

  5. def get(req: MultiGetDefinition): Future[MultiGetResponse]

    Annotations
    @deprecated
    Deprecated

    (Since version 1.0) use execute method with multiget block

  6. def get(builder: GetDefinition): Future[GetResponse]

    Annotations
    @deprecated
    Deprecated

    (Since version 1.0) use execute method

  7. def optimize(indexes: String*): Future[OptimizeResponse]

    Annotations
    @deprecated
    Deprecated

    (Since version 1.0) use execute method

  8. def optimize(d: ElasticDsl.OptimizeDefinition): Future[OptimizeResponse]

    Annotations
    @deprecated
    Deprecated

    (Since version 1.0) use execute method

  9. def percolate(percolate: ElasticDsl.PercolateDefinition): Future[PercolateResponse]

    Annotations
    @deprecated
    Deprecated

    (Since version 1.0) use execute method

  10. def register(registerDef: ElasticDsl.RegisterDefinition): Future[IndexResponse]

    Annotations
    @deprecated
    Deprecated

    (Since version 1.0) use execute method

  11. def result(requests: BulkCompatibleDefinition*)(implicit duration: Duration): BulkResponse

    Annotations
    @deprecated
    Deprecated

    (Since version 0.90.5) use the sync client

  12. def search(searches: ElasticDsl.SearchDefinition*): Future[MultiSearchResponse]

    Annotations
    @deprecated
    Deprecated

    (Since version 1.0) use execute method

  13. def search(sdef: ElasticDsl.SearchDefinition): Future[SearchResponse]

    Executes a Scala DSL search and returns a scala Future with the SearchResponse.

    Executes a Scala DSL search and returns a scala Future with the SearchResponse.

    sdef

    a SearchDefinition from the Scala DSL

    returns

    a Future providing an SearchResponse

    Annotations
    @deprecated
    Deprecated

    (Since version 1.0) use execute method

Inherited from AnyRef

Inherited from Any

Ungrouped