etaty / rediscala

Non-blocking, Reactive Redis driver for Scala (with Sentinel support)
Apache License 2.0
790 stars 142 forks source link

Is there a way to detect when SubscriberClient.subscribe() completes? #77

Closed daveey closed 9 years ago

etaty commented 9 years ago

No. Redis does not give a reply.

You should check other messaging system if you don't want to loose messages, or use List http://redis.io/commands#list with blocking commands

Also you can look at http://redis.io/commands/pubsub but the command is not in Rediscala yet (you easily write it though)