Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -379,12 +379,13 @@ internal JobIdentifier(int id, Guid instanceId)
/// <summary>
/// Interface to expose a job debugger.
/// </summary>
#nullable enable
public interface IJobDebugger
{
/// <summary>
/// Job Debugger.
/// </summary>
Debugger Debugger
Debugger? Debugger
{
get;
}
Expand All @@ -398,6 +399,7 @@ bool IsAsync
set;
}
}
#nullable restore

/// <summary>
/// Represents a command running in background. A job object can internally
Expand Down