You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
return include __DIR__ . '/config/module.config.php';
}
/**
* {@inheritDoc}
*/
public function getConsoleBanner(AdapterInterface $console)
{
return 'SlmQueueSqs';
}
/**
* {@inheritDoc}
*/
public function getConsoleUsage(AdapterInterface $console)
{
return array(
'queue sqs <queue> [--visibilityTimeout=] [--waitTime=]' => 'Process the jobs',
array('<queue>', 'Queue\'s name to process'),
array('--visibilityTimeout=', 'Duration (in seconds) that the received messages are hidden from subsequent retrieve requests after being retrieved by a pop request'),
array('--waitTime=', 'Wait time (in seconds) for which the call will wait for a job to arrive in the queue before returning')