Example #1
0
 public function __construct(ItemReaderInterface $reader, ItemWriterInterface $writer, ItemProcessorInterface $processor)
 {
     parent::__construct($reader, $writer, $processor);
     $this->retryableExceptions = array();
     $this->maxAttempts = 1;
     $this->retryAfter = 1000;
     $this->attempts = 0;
 }
Example #2
0
 public function __construct(ItemReaderInterface $reader, ItemWriterInterface $writer, ItemProcessorInterface $processor)
 {
     parent::__construct($reader, $writer, $processor);
     $this->skippedExceptions = array();
 }