ITeamFoundationJobService.QueueDelayedJobs Method (IEnumerable<Guid>, Int32)
Schedules the specified enumerable collection of jobs to be executed in the near future.
Namespace: Microsoft.TeamFoundation.Framework.Client
Assembly: Microsoft.TeamFoundation.Client (in Microsoft.TeamFoundation.Client.dll)
Syntax
'Declaration
Function QueueDelayedJobs ( _
jobIds As IEnumerable(Of Guid), _
maxDelaySeconds As Integer _
) As Integer
int QueueDelayedJobs(
IEnumerable<Guid> jobIds,
int maxDelaySeconds
)
int QueueDelayedJobs(
IEnumerable<Guid>^ jobIds,
int maxDelaySeconds
)
abstract QueueDelayedJobs :
jobIds:IEnumerable<Guid> *
maxDelaySeconds:int -> int
function QueueDelayedJobs(
jobIds : IEnumerable<Guid>,
maxDelaySeconds : int
) : int
Parameters
jobIds
Type: System.Collections.Generic.IEnumerable<Guid>An enumerable collection of job IDs of the jobs to schedule for execution.
maxDelaySeconds
Type: System.Int32The number of seconds to delay the start of the job.
Return Value
Type: System.Int32
The number of jobs that were successfully scheduled for execution.
Remarks
QueueDelayedJobs will only cause a job to run sooner or will have no effect. It will never postpone a job that is already scheduled to be executed in the near future.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.