JavaClient

com.sksamuel.elastic4s.http.JavaClient
See theJavaClient companion object
class JavaClient(client: RestClient) extends HttpClient

An implementation of HttpClient that wraps the Elasticsearch Java Rest Client

Attributes

Companion
object
Graph
Supertypes
trait HttpClient
trait AutoCloseable
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

def apacheEntity(entity: HttpEntity): AbstractHttpEntity
override def close(): Unit

Closes the underlying http client. Can be a no-op if the underlying client does not have state that needs to be closed.

Closes the underlying http client. Can be a no-op if the underlying client does not have state that needs to be closed.

Attributes

Definition Classes
HttpClient -> AutoCloseable
def fromResponse(r: Response): HttpResponse
override def send(req: ElasticRequest, callback: Either[Throwable, HttpResponse] => Unit): Unit

Sends the given request to elasticsearch.

Sends the given request to elasticsearch.

Implementations should invoke the callback function once the response is known.

The callback function should be invoked with a HttpResponse for all requests that received a response, including 4xx and 5xx responses. The callback function should only be invoked with an exception if the client could not complete the request.

Attributes

Definition Classes
HttpClient

Inherited fields

protected val logger: Logger

Attributes

Inherited from:
HttpClient