This would be exactly like defining a job with new Job(client, options) but would allow a possible nicer API (and one that would better match the mental model of producing a side-effect). For example:
const job = new Job(client, options)
Would be the same as:
const job = client.defineJob(options)
From SyncLinear.com | TRI-606
This would be exactly like defining a job with
new Job(client, options)but would allow a possible nicer API (and one that would better match the mental model of producing a side-effect). For example:Would be the same as:
From SyncLinear.com | TRI-606