Skip to content

Commit

Permalink
Remove EXPERIMENTAL API notice on C# interceptor API
Browse files Browse the repository at this point in the history
  • Loading branch information
mehrdada committed Jun 7, 2018
1 parent f03344e commit 0de9bd3
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 7 deletions.
1 change: 0 additions & 1 deletion src/csharp/Grpc.Core/Interceptors/CallInvokerExtensions.cs
Expand Up @@ -24,7 +24,6 @@ namespace Grpc.Core.Interceptors
{
/// <summary>
/// Extends the CallInvoker class to provide the interceptor facility on the client side.
/// This is an EXPERIMENTAL API.
/// </summary>
public static class CallInvokerExtensions
{
Expand Down
1 change: 0 additions & 1 deletion src/csharp/Grpc.Core/Interceptors/ChannelExtensions.cs
Expand Up @@ -22,7 +22,6 @@ namespace Grpc.Core.Interceptors
{
/// <summary>
/// Provides extension methods to make it easy to register interceptors on Channel objects.
/// This is an EXPERIMENTAL API.
/// </summary>
public static class ChannelExtensions
{
Expand Down
Expand Up @@ -25,7 +25,6 @@ namespace Grpc.Core.Interceptors
{
/// <summary>
/// Carries along the context associated with intercepted invocations on the client side.
/// This is an EXPERIMENTAL API.
/// </summary>
public struct ClientInterceptorContext<TRequest, TResponse>
where TRequest : class
Expand Down
1 change: 0 additions & 1 deletion src/csharp/Grpc.Core/Interceptors/Interceptor.cs
Expand Up @@ -25,7 +25,6 @@ namespace Grpc.Core.Interceptors
{
/// <summary>
/// Serves as the base class for gRPC interceptors.
/// This is an EXPERIMENTAL API.
/// </summary>
public abstract class Interceptor
{
Expand Down
Expand Up @@ -24,14 +24,12 @@ namespace Grpc.Core.Interceptors
{
/// <summary>
/// Extends the ServerServiceDefinition class to add methods used to register interceptors on the server side.
/// This is an EXPERIMENTAL API.
/// </summary>
public static class ServerServiceDefinitionExtensions
{
/// <summary>
/// Returns a <see cref="Grpc.Core.ServerServiceDefinition" /> instance that
/// intercepts incoming calls to the underlying service handler through the given interceptor.
/// This is an EXPERIMENTAL API.
/// </summary>
/// <param name="serverServiceDefinition">The <see cref="Grpc.Core.ServerServiceDefinition" /> instance to register interceptors on.</param>
/// <param name="interceptor">The interceptor to intercept the incoming invocations with.</param>
Expand All @@ -52,7 +50,6 @@ public static ServerServiceDefinition Intercept(this ServerServiceDefinition ser
/// <summary>
/// Returns a <see cref="Grpc.Core.ServerServiceDefinition" /> instance that
/// intercepts incoming calls to the underlying service handler through the given interceptors.
/// This is an EXPERIMENTAL API.
/// </summary>
/// <param name="serverServiceDefinition">The <see cref="Grpc.Core.ServerServiceDefinition" /> instance to register interceptors on.</param>
/// <param name="interceptors">
Expand Down

0 comments on commit 0de9bd3

Please sign in to comment.