-
-
Notifications
You must be signed in to change notification settings - Fork 989
New issue
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
Push notifications support #1316
Push notifications support #1316
Conversation
|
||
foreach ($push as $notification) { | ||
if ((null !== $notification) && $notification->getDataType() === PushResponseInterface::MESSAGE_DATA_TYPE) { | ||
if ($notification[1] === 'control' && $notification[2] === 'terminate') { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about moving control and terminate into things we can import + test against (const-y)
// Data types should be changed in near future. Instead of Message data type it should be one of kind data types. | ||
|
||
$dispatcher->attachCallback( | ||
PushResponseInterface::MESSAGE_DATA_TYPE, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
YES!
@@ -1048,7 +1048,7 @@ public function testPubSubLoopWithoutArgumentsReturnsPubSubConsumer(): void | |||
{ | |||
$client = new Client(); | |||
|
|||
$this->assertInstanceOf('Predis\PubSub\Consumer', $client->pubSubLoop()); | |||
$this->assertInstanceOf('Predis\Consumer\PubSub\Consumer', $client->pubSubLoop()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TBH I preferred the old pathing. It looks prettier. Any way to approach it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@chayim It was done to keep different entities within the same domain. There are a lot of "Consumers": PubSub, Sharded PubSub, Push Notifications. All of them "consume" messages from server. IMHO, it's better to create a separate place where we can keep all entities related to this domain, then spreading them across whole library.
Closes #1308