private_pub を使用して、1 対 1 のチャットのようなアプリケーションを実装しています。
これが私の話です: ユーザーとして、パートナーがチャットを離れたときにメッセージを受け取りたいです – ウィンドウを閉じるなど.
ここでFaye Monitoringのドキュメントを調べると、次のようにバインドしようとしていunsubscribe
ます:
# Run with: rackup private_pub.ru -s thin -E production
require "bundler/setup"
require "yaml"
require "faye"
require "private_pub"
require "active_support/core_ext"
Faye::WebSocket.load_adapter('thin')
PrivatePub.load_config(File.expand_path("../config/private_pub.yml", __FILE__), ENV["RAILS_ENV"] || "development")
wts_pubsub = PrivatePub.faye_app
wts_pubsub.bind(:subscribe) do |client_id, channel|
puts "[#{Time.now}] Client #{client_id} joined #{channel}"
end
wts_pubsub.bind(:unsubscribe) do |client_id, channel|
puts "[#{Time.now}] Client #{client_id} disconnected from #{channel}"
PrivatePub.publish_to channel, { marius_says: 'quitter' }
end
run wts_pubsub
しかし、私はタイムアウトを取得し続けます:[ERROR] [Faye::RackAdapter] Timeout::Error
PrivatePub#publish_to
Rails または private_pub アプリからパブリッシュしているときに期待どおりのデータが保持されますが、private_pub アプリがハングし続けます。
private_pub から公開するにはどうすればよいですか?