2 implementations of ICoordinatorDebugOutput
Microsoft.Build (1)
BackEnd\BuildManager\CoordinatorClient.DefaultDebugOutput.cs (1)
16private sealed class DefaultDebugOutput : ICoordinatorDebugOutput
MSBuild.Coordinator (1)
CoordinatorServer.DefaultDebugOutput.cs (1)
16private sealed class DefaultDebugOutput : ICoordinatorDebugOutput
23 references to ICoordinatorDebugOutput
Microsoft.Build (17)
BackEnd\BuildManager\CoordinatorClient.Connection.cs (2)
52public static Connection? TryCreate(NamedPipeClientStream pipeStream, int processId, ICoordinatorDebugOutput output) 66private bool TryHandshake(int processId, ICoordinatorDebugOutput output)
BackEnd\BuildManager\CoordinatorClient.cs (11)
27private readonly ICoordinatorDebugOutput _output; 61ICoordinatorDebugOutput output) 113ICoordinatorDebugOutput output = DefaultDebugOutput.Instance; 178ICoordinatorDebugOutput output) 262private static bool IsCoordinatorRunning(CoordinatorSettings settings, ICoordinatorDebugOutput output) 283private static bool WaitForCoordinatorStartup(CoordinatorSettings settings, ICoordinatorDebugOutput output) 317ICoordinatorDebugOutput output, 396ICoordinatorDebugOutput output, 433ICoordinatorDebugOutput output, 444ICoordinatorDebugOutput output) 460private static bool TryLaunchCoordinator(ILoggingService loggingService, ICoordinatorDebugOutput output)
BackEnd\BuildManager\CoordinatorClient.DefaultDebugOutput.cs (1)
34public void WriteLine([InterpolatedStringHandlerArgument("")] ref ICoordinatorDebugOutput.WriteLineInterpolatedStringHandler handler)
BackEnd\BuildManager\CoordinatorClient.HeartbeatTimer.cs (2)
23private readonly ICoordinatorDebugOutput _output; 29public HeartbeatTimer(Connection connection, int intervalMs, ICoordinatorDebugOutput output)
BackEnd\BuildManager\CoordinatorClient.TestAccessor.cs (1)
25public static CoordinatorClient? TryConnectToServer(int requestedNodes, CoordinatorSettings settings, ICoordinatorDebugOutput output)
Microsoft.Build.Framework (1)
Coordinator\ICoordinatorDebugOutput.cs (1)
28public WriteLineInterpolatedStringHandler(int literalLength, int formattedCount, ICoordinatorDebugOutput output, out bool isEnabled)
MSBuild.Coordinator (5)
CoordinatorServer.Connection.cs (2)
51public static Connection? TryCreate(NamedPipeServerStream pipeStream, ICoordinatorDebugOutput output) 64private bool TryHandshake(ICoordinatorDebugOutput output)
CoordinatorServer.cs (2)
20internal sealed partial class CoordinatorServer(CoordinatorSettings settings, ICoordinatorDebugOutput? output = null) : IDisposable 31private readonly ICoordinatorDebugOutput _output = output ?? DefaultDebugOutput.Instance;
CoordinatorServer.DefaultDebugOutput.cs (1)
50public void WriteLine([InterpolatedStringHandlerArgument("")] ref ICoordinatorDebugOutput.WriteLineInterpolatedStringHandler handler)