endpoint-closure.asciidoc 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. [[endpoint-closure]]
  2. === Set the Endpoint closure
  3. The client uses an Endpoint closure to dispatch API requests to the correct
  4. Endpoint object. A namespace object will construct a new Endpoint via this
  5. closure, which means this is a handy location if you wish to extend the
  6. available set of API endpoints available.
  7. For example, we could add a new endpoint like so:
  8. [source,php]
  9. ----
  10. $transport = $this->transport;
  11. $serializer = $this->serializer;
  12. $newEndpoint = function ($class) use ($transport, $serializer) {
  13. if ($class == 'SuperSearch') {
  14. return new MyProject\SuperSearch($transport);
  15. } else {
  16. // Default handler
  17. $fullPath = '\\Elasticsearch\\Endpoints\\' . $class;
  18. if ($class === 'Bulk' || $class === 'Msearch' || $class === 'MPercolate') {
  19. return new $fullPath($transport, $serializer);
  20. } else {
  21. return new $fullPath($transport);
  22. }
  23. }
  24. };
  25. $client = ClientBuilder::create()
  26. ->setEndpoint($newEndpoint)
  27. ->build();
  28. ----
  29. Obviously, by doing this you take responsibility that all existing endpoints
  30. still function correctly. And you also assume the responsibility of correctly
  31. wiring the Transport and Serializer into each endpoint.