Skip to content
Snippets Groups Projects
Commit 054fae7e authored by Jan Tattermusch's avatar Jan Tattermusch
Browse files

move implementations of CallInvoker to Grpc.Core.Internal

parent efb77848
No related branches found
No related tags found
No related merge requests found
......@@ -34,6 +34,7 @@
using System;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using Grpc.Core.Internal;
using Grpc.Core.Utils;
namespace Grpc.Core
......
......@@ -131,8 +131,8 @@
<Compile Include="Utils\GrpcPreconditions.cs" />
<Compile Include="CallInvoker.cs" />
<Compile Include="DefaultCallInvoker.cs" />
<Compile Include="InterceptingCallInvoker.cs" />
<Compile Include="UnimplementedCallInvoker.cs" />
<Compile Include="Internal\UnimplementedCallInvoker.cs" />
<Compile Include="Internal\InterceptingCallInvoker.cs" />
</ItemGroup>
<ItemGroup>
<None Include="Grpc.Core.nuspec" />
......
......@@ -33,10 +33,10 @@
using System;
using System.Threading.Tasks;
using Grpc.Core.Internal;
using Grpc.Core;
using Grpc.Core.Utils;
namespace Grpc.Core
namespace Grpc.Core.Internal
{
/// <summary>
/// Decorates an underlying <c>CallInvoker</c> to intercept call invocations.
......
......@@ -33,10 +33,10 @@
using System;
using System.Threading.Tasks;
using Grpc.Core.Internal;
using Grpc.Core;
using Grpc.Core.Utils;
namespace Grpc.Core
namespace Grpc.Core.Internal
{
/// <summary>
/// Call invoker that throws <c>NotImplementedException</c> for all requests.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment