Skip to content

Commit

Permalink
Rename HandleRpc
Browse files Browse the repository at this point in the history
  • Loading branch information
xqrzd committed Jul 23, 2023
1 parent 4967c79 commit 434a814
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Knet.Kudu.Client/Connection/KuduConnection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -196,14 +196,14 @@ private SequencePosition ProcessMessages(ReadOnlySequence<byte> buffer, ParserCo

while (KuduMessageParser.TryParse(ref reader, parserContext))
{
HandleRpc(parserContext);
CompleteInflightRpc(parserContext);
parserContext.Reset();
}

return reader.Position;
}

private void HandleRpc(ParserContext parserContext)
private void CompleteInflightRpc(ParserContext parserContext)
{
var header = parserContext.Header!;
var callId = header.CallId;
Expand Down

0 comments on commit 434a814

Please sign in to comment.