InlineScheduler
using System.Runtime.CompilerServices;
namespace System.IO.Pipelines
{
    [NullableContext(2)]
    [Nullable(0)]
    internal sealed class InlineScheduler : PipeScheduler
    {
        public override void Schedule([Nullable(new byte[] {
            1,
            2
        })] Action<object> action, object state)
        {
            action(state);
        }
        internal override void UnsafeSchedule([Nullable(new byte[] {
            1,
            2
        })] Action<object> action, object state)
        {
            action(state);
        }
    }
}