Skip to content

Latest commit

 

History

History
51 lines (37 loc) · 1.51 KB

File metadata and controls

51 lines (37 loc) · 1.51 KB

JobConfiguration

org.thingsboard.client.model.JobConfiguration

Properties

Name Type Description Notes
tasksKey String
toReprocess List<TaskResult> [optional]
type String

Subtypes

DummyJobConfiguration (type=DUMMY)

Name Type Description Notes
taskProcessingTimeMs Long [optional]
successfulTasksCount Integer [optional]
failedTasksCount Integer [optional]
permanentlyFailedTasksCount Integer [optional]
errors List [optional]
retries Integer [optional]
taskProcessingTimeoutMs Long [optional]
generalError String [optional]
submittedTasksBeforeGeneralError Integer [optional]

Referenced Types

TaskResult

Name Type Description Notes
key String [optional]
success Boolean [optional]
discarded Boolean [optional]
finishTs Long [optional]
error String [optional]
jobType String

Conventions

  • Package: org.thingsboard.client.model
  • Getter pattern: get<PropertyName>() — e.g., getId(), getName()
  • Setter pattern: set<PropertyName>(value) — e.g., setId(value), setName(value)
  • Null fields: Getters return null for unset optional fields; they do not throw exceptions