Skip to content

Commit

Permalink
Mark as Preview API
Browse files Browse the repository at this point in the history
  • Loading branch information
mayuki committed Mar 21, 2024
1 parent bda9909 commit fe66d55
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
namespace MagicOnion.Client
{
/// <summary>
/// The interface of the handler for StreamingHub diagnostics.
/// [Preview] The interface of the handler for StreamingHub diagnostics. This API may change in the future.
/// </summary>
public interface IStreamingHubDiagnosticHandler
{
/// <summary>
/// The callback method at the beginning of a Hub method request.
/// The callback method at the beginning of a Hub method request. This API may change in the future.
/// </summary>
/// <typeparam name="THub"></typeparam>
/// <typeparam name="TRequest"></typeparam>
Expand All @@ -20,7 +20,7 @@ public interface IStreamingHubDiagnosticHandler
void OnRequestBegin<THub, TRequest>(THub hubInstance, Guid requestId, string methodName, TRequest request, bool isFireAndForget);

/// <summary>
/// The callback method at the end of a Hub method request.
/// [Preview] The callback method at the end of a Hub method request. This API may change in the future.
/// </summary>
/// <typeparam name="THub"></typeparam>
/// <typeparam name="TResponse"></typeparam>
Expand All @@ -31,7 +31,7 @@ public interface IStreamingHubDiagnosticHandler
void OnRequestEnd<THub, TResponse>(THub hubInstance, Guid requestId, string methodName, TResponse response);

/// <summary>
/// The callback method when a method of HubReceiver is invoked.
/// [Preview] The callback method when a method of HubReceiver is invoked. This API may change in the future.
/// </summary>
/// <typeparam name="THub"></typeparam>
/// <typeparam name="T"></typeparam>
Expand Down
8 changes: 4 additions & 4 deletions src/MagicOnion.Client/IStreamingHubDiagnosticHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
namespace MagicOnion.Client
{
/// <summary>
/// The interface of the handler for StreamingHub diagnostics.
/// [Preview] The interface of the handler for StreamingHub diagnostics. This API may change in the future.
/// </summary>
public interface IStreamingHubDiagnosticHandler
{
/// <summary>
/// The callback method at the beginning of a Hub method request.
/// The callback method at the beginning of a Hub method request. This API may change in the future.
/// </summary>
/// <typeparam name="THub"></typeparam>
/// <typeparam name="TRequest"></typeparam>
Expand All @@ -20,7 +20,7 @@ public interface IStreamingHubDiagnosticHandler
void OnRequestBegin<THub, TRequest>(THub hubInstance, Guid requestId, string methodName, TRequest request, bool isFireAndForget);

/// <summary>
/// The callback method at the end of a Hub method request.
/// [Preview] The callback method at the end of a Hub method request. This API may change in the future.
/// </summary>
/// <typeparam name="THub"></typeparam>
/// <typeparam name="TResponse"></typeparam>
Expand All @@ -31,7 +31,7 @@ public interface IStreamingHubDiagnosticHandler
void OnRequestEnd<THub, TResponse>(THub hubInstance, Guid requestId, string methodName, TResponse response);

/// <summary>
/// The callback method when a method of HubReceiver is invoked.
/// [Preview] The callback method when a method of HubReceiver is invoked. This API may change in the future.
/// </summary>
/// <typeparam name="THub"></typeparam>
/// <typeparam name="T"></typeparam>
Expand Down

0 comments on commit fe66d55

Please sign in to comment.