Skip to content

Commit 42f649f

Browse files
committed
Rename IDispatch to a more explicit name => IHighLevelToLowLevelDispatcher
1 parent 75972b1 commit 42f649f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Nest/ElasticClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace Nest
1313
/// <summary>
1414
/// ElasticClient is NEST's strongly typed client which exposes fully mapped elasticsearch endpoints
1515
/// </summary>
16-
public partial class ElasticClient : IElasticClient, IDispatch
16+
public partial class ElasticClient : IElasticClient, IHighLevelToLowLevelDispatcher
1717
{
1818
private readonly IConnectionSettingsValues _connectionSettings;
1919

src/Nest/IDispatch.cs renamed to src/Nest/IHighLevelToLowLevelDispatcher.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
namespace Nest
99
{
10-
public interface IDispatch
10+
public interface IHighLevelToLowLevelDispatcher
1111
{
1212
R Dispatch<D, Q, R>(D descriptor, Func<ElasticsearchPathInfo<Q>, D, ElasticsearchResponse<R>> dispatch)
1313
where Q : FluentRequestParameters<Q>, new()

src/Nest/Nest.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@
410410
<Compile Include="Exception\SnapshotException.cs" />
411411
<Compile Include="ExposedInternals\NestSerializer.cs" />
412412
<Compile Include="Enums\GeoDistance.cs" />
413-
<Compile Include="IDispatch.cs" />
413+
<Compile Include="IHighLevelToLowLevelDispatcher.cs" />
414414
<Compile Include="Obsolete\Obsolete.cs" />
415415
<Compile Include="Resolvers\Converters\Aggregations\FiltersAggregatorConverter.cs" />
416416
<Compile Include="Resolvers\Converters\Aggregations\FilterAggregatorConverter.cs" />

0 commit comments

Comments
 (0)