Creates a job that repeats a previously executed job

Namespace: BrightstarDB.Dto
Assembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)

Syntax

C#
public static JobRequestObject CreateRepeatTransactionJob(
	Guid jobId,
	string label = null
)
Visual Basic
Public Shared Function CreateRepeatTransactionJob ( 
	jobId As Guid,
	Optional label As String = Nothing
) As JobRequestObject
Visual C++
public:
static JobRequestObject^ CreateRepeatTransactionJob(
	Guid jobId, 
	String^ label = nullptr
)
F#
static member CreateRepeatTransactionJob : 
        jobId : Guid * 
        ?label : string 
(* Defaults:
        let _label = defaultArg label null
*)
-> JobRequestObject 

Parameters

jobId
Type: System..::..Guid
The GUID identifier of the job to be repeated
label (Optional)
Type: System..::..String
A user-friendly label for the job

Return Value

Type: JobRequestObject
A new JobRequestObject instance

See Also