Esempio n. 1
0
 public Task WritePriorityAsync(IChannelHandlerContext ctx, int streamId, int streamDependency, short weight, bool exclusive, IPromise promise)
 {
     _logger.LogPriority(Direction.Outbound, ctx, streamId, streamDependency, weight, exclusive);
     return(_writer.WritePriorityAsync(ctx, streamId, streamDependency, weight, exclusive, promise));
 }
Esempio n. 2
0
 public void OnPriorityRead(IChannelHandlerContext ctx, int streamId, int streamDependency, short weight, bool exclusive)
 {
     _logger.LogPriority(Direction.Inbound, ctx, streamId, streamDependency, weight, exclusive);
     _listener.OnPriorityRead(ctx, streamId, streamDependency, weight, exclusive);
 }