process method

  1. @override
Result<Null, String> process()
override

called for when this job stack has determined this job is suitable to be ran

returns a result which represents the job status

Implementation

@override
Result<Null, String> process() {
  logger.info("FakeJob_$hashCode -> process !");
  return Result<Null, String>.bad("FAKE_JOB");
}