File tree Expand file tree Collapse file tree 5 files changed +9
-9
lines changed
perf/Grpc.AspNetCore.Microbenchmarks/Internal
src/Grpc.AspNetCore.Server Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 18
18
19
19
using System ;
20
20
using System . Threading . Tasks ;
21
- using Grpc . AspNetCore . Server . Internal ;
21
+ using Grpc . AspNetCore . Server ;
22
22
23
23
namespace Grpc . AspNetCore . Microbenchmarks . Internal
24
24
{
Original file line number Diff line number Diff line change 16
16
17
17
#endregion
18
18
19
- namespace Grpc . AspNetCore . Server . Internal
19
+ namespace Grpc . AspNetCore . Server
20
20
{
21
21
/// <summary>
22
22
/// Handle to the activator instance.
23
23
/// </summary>
24
24
/// <typeparam name="T">The instance type.</typeparam>
25
- internal readonly struct GrpcActivatorHandle < T >
25
+ public readonly struct GrpcActivatorHandle < T >
26
26
{
27
27
/// <summary>
28
28
/// Creates a new instance of <see cref="GrpcActivatorHandle{T}"/>.
Original file line number Diff line number Diff line change 18
18
19
19
using Grpc . Core . Interceptors ;
20
20
21
- namespace Grpc . AspNetCore . Server . Internal
21
+ namespace Grpc . AspNetCore . Server
22
22
{
23
23
/// <summary>
24
24
/// A <typeparamref name="TInterceptor"/> activator abstraction.
25
25
/// </summary>
26
26
/// <typeparam name="TInterceptor">The interceptor type.</typeparam>
27
- internal interface IGrpcInterceptorActivator < TInterceptor > : IGrpcInterceptorActivator where TInterceptor : Interceptor { }
27
+ public interface IGrpcInterceptorActivator < TInterceptor > : IGrpcInterceptorActivator where TInterceptor : Interceptor { }
28
28
}
Original file line number Diff line number Diff line change 20
20
using System . Threading . Tasks ;
21
21
using Grpc . Core . Interceptors ;
22
22
23
- namespace Grpc . AspNetCore . Server . Internal
23
+ namespace Grpc . AspNetCore . Server
24
24
{
25
25
/// <summary>
26
26
/// An interceptor activator abstraction.
27
27
/// </summary>
28
- internal interface IGrpcInterceptorActivator
28
+ public interface IGrpcInterceptorActivator
29
29
{
30
30
/// <summary>
31
31
/// Creates an interceptor.
Original file line number Diff line number Diff line change 19
19
using System ;
20
20
using System . Threading . Tasks ;
21
21
22
- namespace Grpc . AspNetCore . Server . Internal
22
+ namespace Grpc . AspNetCore . Server
23
23
{
24
24
/// <summary>
25
25
/// A <typeparamref name="TGrpcService"/> activator abstraction.
26
26
/// </summary>
27
27
/// <typeparam name="TGrpcService">The service type.</typeparam>
28
- internal interface IGrpcServiceActivator < TGrpcService > where TGrpcService : class
28
+ public interface IGrpcServiceActivator < TGrpcService > where TGrpcService : class
29
29
{
30
30
/// <summary>
31
31
/// Creates a service.
You can’t perform that action at this time.
0 commit comments