1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
# Licensed to Elasticsearch B.V under one or more agreements.
# Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
# See the LICENSE file in the project root for more information
package Search::Elasticsearch::Role::Client;
$Search::Elasticsearch::Role::Client::VERSION = '8.12';
use Moo::Role;
use namespace::clean;
requires 'parse_request';
has 'transport' => ( is => 'ro', required => 1 );
has 'logger' => ( is => 'ro', required => 1 );
#===================================
sub perform_request {
#===================================
my $self = shift;
my $request = $self->parse_request(@_);
return $self->transport->perform_request($request);
}
1;
=pod
=encoding UTF-8
=head1 NAME
Search::Elasticsearch::Role::Client - Provides common functionality for Client implementations
=head1 VERSION
version 8.12
=head1 DESCRIPTION
This role provides a common C<perform_request()> method for Client
implementations.
=head1 METHODS
=head2 C<perform_request()>
This method takes whatever arguments it is passed and passes them directly to
a C<parse_request()> method (which should be provided by Client implementations).
The C<parse_request()> method should return a request suitable for passing
to L<Search::Elasticsearch::Transport/perform_request()>.
=head1 AUTHOR
Enrico Zimuel <enrico.zimuel@elastic.co>
=head1 COPYRIGHT AND LICENSE
This software is Copyright (c) 2024 by Elasticsearch BV.
This is free software, licensed under:
The Apache License, Version 2.0, January 2004
=cut
__END__
# ABSTRACT: Provides common functionality for Client implementations
|