mirror of
https://github.com/chylex/.NET-Community-Toolkit.git
synced 2024-11-24 07:42:45 +01:00
52 lines
1.6 KiB
C#
52 lines
1.6 KiB
C#
// Licensed to the .NET Foundation under one or more agreements.
|
|
// The .NET Foundation licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
using System;
|
|
using System.Buffers;
|
|
using System.Runtime.CompilerServices;
|
|
using CommunityToolkit.HighPerformance.Buffers;
|
|
|
|
namespace CommunityToolkit.HighPerformance.Streams;
|
|
|
|
/// <summary>
|
|
/// An <see cref="IBufferWriter{T}"/> implementation wrapping an <see cref="ArrayPoolBufferWriter{T}"/> instance.
|
|
/// </summary>
|
|
internal readonly struct ArrayBufferWriterOwner : IBufferWriter<byte>
|
|
{
|
|
/// <summary>
|
|
/// The wrapped <see cref="ArrayPoolBufferWriter{T}"/> array.
|
|
/// </summary>
|
|
private readonly ArrayPoolBufferWriter<byte> writer;
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ArrayBufferWriterOwner"/> struct.
|
|
/// </summary>
|
|
/// <param name="writer">The wrapped <see cref="ArrayPoolBufferWriter{T}"/> instance.</param>
|
|
public ArrayBufferWriterOwner(ArrayPoolBufferWriter<byte> writer)
|
|
{
|
|
this.writer = writer;
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
public void Advance(int count)
|
|
{
|
|
this.writer.Advance(count);
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
public Memory<byte> GetMemory(int sizeHint = 0)
|
|
{
|
|
return this.writer.GetMemory(sizeHint);
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
public Span<byte> GetSpan(int sizeHint = 0)
|
|
{
|
|
return this.writer.GetSpan(sizeHint);
|
|
}
|
|
}
|