class Google::Apis::RemotebuildexecutionV2::BuildBazelRemoteExecutionV2ExecutionPolicy
An `ExecutionPolicy` can be used to control the scheduling of the action.
Attributes
The priority (relative importance) of this action. Generally, a lower value means that the action should be run sooner than actions having a greater priority value, but the interpretation of a given value is server- dependent. A priority of 0 means the default priority. Priorities may be positive or negative, and such actions should run later or sooner than actions having the default priority, respectively. The particular semantics of this field is up to the server. In particular, every server will have their own supported range of priorities, and will decide how these map into scheduling policy. Corresponds to the JSON property `priority` @return [Fixnum]
Public Class Methods
# File lib/google/apis/remotebuildexecution_v2/classes.rb, line 1317 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/remotebuildexecution_v2/classes.rb, line 1322 def update!(**args) @priority = args[:priority] if args.key?(:priority) end