Skip to content

Commit

Permalink
Fix build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
chkr1011 committed Jul 24, 2024
1 parent b271f42 commit 949fc95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/MQTTnet.Benchmarks/SerializerBenchmark.cs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public Task<int> ReadAsync(byte[] buffer, int offset, int count, CancellationTok
return Task.FromResult(count);
}

public Task WriteAsync(ArraySegment<byte> buffer, bool isEndOfPacket, CancellationToken cancellationToken)
public Task WriteAsync(ReadOnlySequence<byte> buffer, bool isEndOfPacket, CancellationToken cancellationToken)
{
throw new NotSupportedException();
}
Expand Down

0 comments on commit 949fc95

Please sign in to comment.