1 write to _request
Microsoft.Build (1)
BackEnd\Components\Scheduler\SchedulableRequest.cs (1)
134
_request
= request;
6 references to _request
Microsoft.Build (6)
BackEnd\Components\Scheduler\SchedulableRequest.cs (6)
164
get { return
_request
; }
404
ErrorUtilities.VerifyThrow((_state == SchedulableRequestState.Ready) || !_schedulingData.IsRequestScheduled(this), $"Another instance of request {
_request
.GlobalRequestId} is already scheduled.");
405
ErrorUtilities.VerifyThrow(!_schedulingData.IsNodeWorking(nodeId), $"Cannot resume execution of request {
_request
.GlobalRequestId} because node {nodeId} is already working.");
407
int requiredNodeId = _schedulingData.GetAssignedNodeForRequestConfiguration(
_request
.ConfigurationId);
408
ErrorUtilities.VerifyThrow(requiredNodeId == Scheduler.InvalidNodeId || requiredNodeId == nodeId, $"Request {
_request
.GlobalRequestId} cannot be assigned to node {nodeId} because its configuration is already assigned to node {requiredNodeId}");
449
ErrorUtilities.VerifyThrow(_state == requiredState, $"Request {
_request
.GlobalRequestId} expected to be in state {requiredState} but state is actually {_state}");