Skip to content

Commit

Permalink
token and outputpipe can be private.
Browse files Browse the repository at this point in the history
  • Loading branch information
santisq committed Jul 5, 2024
1 parent 30370c6 commit 7b47eae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/PSParallelPipeline/PSOutputStreams.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ namespace PSParallelPipeline;

internal sealed class PSOutputStreams : IDisposable
{
internal BlockingCollection<PSOutputData> OutputPipe { get => _worker.OutputPipe; }
private BlockingCollection<PSOutputData> OutputPipe { get => _worker.OutputPipe; }

internal CancellationToken Token { get => _worker.Token; }
private CancellationToken Token { get => _worker.Token; }

internal PSDataCollection<PSObject> Success { get; } = [];

Expand Down

0 comments on commit 7b47eae

Please sign in to comment.