We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
按照nsq的文档,subscribe的时候如果没有对应topic,则会直接生成subscribe设置的topic,希望改进
The text was updated successfully, but these errors were encountered:
For topic not found you can use:
Not sure
try { $nsq->subscribe( $topic, $channel, function (NsqMessage $nsqMessage, $bev) use ($topic, $channel) { ... } ); } catch (NsqException $nsqException) { if ($nsqException->getCode() == NSQ_ERROR_TOPIC_NOT_EXISTS) { logger()->debug('Waiting for topic creation'); sleep(5); } }
Sorry, something went wrong.
No branches or pull requests
按照nsq的文档,subscribe的时候如果没有对应topic,则会直接生成subscribe设置的topic,希望改进
The text was updated successfully, but these errors were encountered: