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 1818
1919using System ;
2020using System . Threading . Tasks ;
21- using Grpc . AspNetCore . Server . Internal ;
21+ using Grpc . AspNetCore . Server ;
2222
2323namespace Grpc . AspNetCore . Microbenchmarks . Internal
2424{
Original file line number Diff line number Diff line change 1616
1717#endregion
1818
19- namespace Grpc . AspNetCore . Server . Internal
19+ namespace Grpc . AspNetCore . Server
2020{
2121 /// <summary>
2222 /// Handle to the activator instance.
2323 /// </summary>
2424 /// <typeparam name="T">The instance type.</typeparam>
25- internal readonly struct GrpcActivatorHandle < T >
25+ public readonly struct GrpcActivatorHandle < T >
2626 {
2727 /// <summary>
2828 /// Creates a new instance of <see cref="GrpcActivatorHandle{T}"/>.
Original file line number Diff line number Diff line change 1818
1919using Grpc . Core . Interceptors ;
2020
21- namespace Grpc . AspNetCore . Server . Internal
21+ namespace Grpc . AspNetCore . Server
2222{
2323 /// <summary>
2424 /// A <typeparamref name="TInterceptor"/> activator abstraction.
2525 /// </summary>
2626 /// <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 { }
2828}
Original file line number Diff line number Diff line change 2020using System . Threading . Tasks ;
2121using Grpc . Core . Interceptors ;
2222
23- namespace Grpc . AspNetCore . Server . Internal
23+ namespace Grpc . AspNetCore . Server
2424{
2525 /// <summary>
2626 /// An interceptor activator abstraction.
2727 /// </summary>
28- internal interface IGrpcInterceptorActivator
28+ public interface IGrpcInterceptorActivator
2929 {
3030 /// <summary>
3131 /// Creates an interceptor.
Original file line number Diff line number Diff line change 1919using System ;
2020using System . Threading . Tasks ;
2121
22- namespace Grpc . AspNetCore . Server . Internal
22+ namespace Grpc . AspNetCore . Server
2323{
2424 /// <summary>
2525 /// A <typeparamref name="TGrpcService"/> activator abstraction.
2626 /// </summary>
2727 /// <typeparam name="TGrpcService">The service type.</typeparam>
28- internal interface IGrpcServiceActivator < TGrpcService > where TGrpcService : class
28+ public interface IGrpcServiceActivator < TGrpcService > where TGrpcService : class
2929 {
3030 /// <summary>
3131 /// Creates a service.
You can’t perform that action at this time.
0 commit comments