§What does a
job look like?
§class IJob {
Long Id; { get; }
String VaultName; { get; }
String JobType; { get; }
String Description; { get; }
System.Collections.Generic.Dictionary<String, String> Params; { get; }
}
§
§JobType is a string indicating what task needs to
be handled.
§
§A Job Handler is configured to handle certain Job
Types, which allows JobProcessor to route the jobs to the
correct handlers.
§
§There is no enforced structure of the string, but it’s
recommended to prefix your company name to any job types.