Table of Contents

Class JobTask

Namespace
Dynamicweb.DataIntegration.Integration
Assembly
Dynamicweb.DataIntegration.dll

Represents job task

public class JobTask
Inheritance
JobTask
Inherited Members

Constructors

JobTask(long, string, string, bool, Dictionary<string, string>)

Constructs JobTask object instance

public JobTask(long timeStamp, string jobs, string logFileName, bool stopOnFailedJob, Dictionary<string, string> destinationParameters)

Parameters

timeStamp long

TimeStamp

jobs string

Jobs

logFileName string

log file name

stopOnFailedJob bool

Defines stop on failed job behaviour

destinationParameters Dictionary<string, string>

Destination parameters

Properties

DestinationParameters

public Dictionary<string, string> DestinationParameters { get; set; }

Property Value

Dictionary<string, string>

Jobs

public string Jobs { get; set; }

Property Value

string

LogFileName

public string LogFileName { get; set; }

Property Value

string

StopOnFailedJob

public bool StopOnFailedJob { get; set; }

Property Value

bool

TimeStamp

public long TimeStamp { get; set; }

Property Value

long
To top