Class: CelluloidPubsub::Client
- Inherits:
-
Object
- Object
- CelluloidPubsub::Client
- Includes:
- BaseActor
- Defined in:
- lib/celluloid_pubsub/client.rb
Overview
worker that subscribes to a channel or publishes to a channel if it used to subscribe to a channel the worker will dispatch the messages to the actor that made the connection in the first place.
Instance Attribute Summary collapse
-
#actor ⇒ Celluloid::Actor
The actor that made the connection.
-
#channel ⇒ String
The channel to which the client will subscribe to once the connection is open.
-
#options ⇒ Hash
options that can be used to connect to webser and send additional data.
Attributes included from BaseActor
Instance Method Summary collapse
-
#connection ⇒ Celluloid::WebSocket::Client
the method will return the client that is used to.
-
#debug_enabled? ⇒ boolean
checks if debug is enabled.
-
#hostname ⇒ String
the method will return the hostname of the server.
-
#initialize(options) ⇒ void
constructor
receives a list of options that are used to connect to the webserver and an actor to which the callbacks are delegated to when receiving messages from a channel.
-
#log_file_path ⇒ String?
the method will return the path to the log file where debug messages will be printed.
-
#on_close(code, reason) ⇒ void
callback executes when connection closes.
-
#on_message(data) ⇒ void
callback executes when actor receives a message from a subscribed channel and parses the message using JSON.parse and dispatches the parsed message to the original actor that made the connection.
-
#on_open ⇒ void
callback executes after connection is opened and delegates action to actor.
-
#path ⇒ String
the method will return the path of the URL on which the servers acccepts the connection.
-
#port ⇒ String
the method will return the port on which the server accepts connections.
-
#publish(channel, data) ⇒ void
publishes to a channel some data (can be anything).
-
#shutdown ⇒ void
the method will terminate the current actor.
-
#subscribe(channel, data = {}) ⇒ void
subscribes to a channel .
-
#supervise_actors ⇒ void
the method will link the current actor to the actor that is attached to, and the connection to the current actor.
-
#unsubscribe(channel) ⇒ void
unsubscribes current client from a channel.
-
#unsubscribe_all ⇒ void
unsubscribes all clients from all channels.
-
#unsubscribe_clients(channel) ⇒ void
unsubscribes all clients subscribed to a channel.
Methods included from BaseActor
celluloid_logger_class, celluloid_version, config, included, setup_actor_supervision, version_less_than_seventeen?
Methods included from Helper
action_subscribe?, fetch_gem_version, filtered_error?, find_loaded_gem, find_loaded_gem_property, get_parsed_version, log_debug, parse_options, setup_celluloid_exception_handler, setup_celluloid_logger, setup_log_file, #succesfull_subscription?, verify_gem_version
Constructor Details
#initialize(options) ⇒ void
receives a list of options that are used to connect to the webserver and an actor to which the callbacks are delegated to
when receiving messages from a channel
47 48 49 50 51 52 53 54 |
# File 'lib/celluloid_pubsub/client.rb', line 47 def initialize() @options = .stringify_keys! @actor ||= @options.fetch('actor', nil) @channel ||= @options.fetch('channel', nil) raise "#{self}: Please provide an actor in the options list!!!" if @actor.blank? supervise_actors setup_celluloid_logger end |
Instance Attribute Details
#actor ⇒ Celluloid::Actor
The actor that made the connection
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
# File 'lib/celluloid_pubsub/client.rb', line 17 class Client include CelluloidPubsub::BaseActor # The actor that made the connection # @return [Celluloid::Actor] actor to which callbacks will be delegated to attr_accessor :actor # options that can be used to connect to webser and send additional data # @return [Hash] the options that can be used to connect to webser and send additional data attr_accessor :options # The channel to which the client will subscribe to once the connection is open # @return [String] The channel to which the client will subscribe to attr_accessor :channel finalizer :shutdown # receives a list of options that are used to connect to the webserver and an actor to which the callbacks are delegated to # when receiving messages from a channel # # @param [Hash] options the options that can be used to connect to webser and send additional data # @option options [String] :actor The actor that made the connection # @option options [String] :channel The channel to which the client will subscribe to once the connection is open # @option options [String] :log_file_path The path to the log file where debug messages will be printed, otherwise will use STDOUT # @option options [String]:hostname The hostname on which the webserver runs on # @option options [String] :port The port on which the webserver runs on # @option options [String] :path The request path that the webserver accepts # # @return [void] # # @api public def initialize() @options = .stringify_keys! @actor ||= @options.fetch('actor', nil) @channel ||= @options.fetch('channel', nil) raise "#{self}: Please provide an actor in the options list!!!" if @actor.blank? supervise_actors setup_celluloid_logger end # the method will return the path to the log file where debug messages will be printed # # @return [String, nil] return the path to the log file where debug messages will be printed # # @api public def log_file_path @log_file_path ||= @options.fetch('log_file_path', nil) end # the method will link the current actor to the actor that is attached to, and the connection to the current actor # # @return [void] # # @api public def supervise_actors current_actor = Actor.current @actor.link current_actor if @actor.respond_to?(:link) current_actor.link connection end # the method will return the client that is used to # # # @return [Celluloid::WebSocket::Client] the websocket connection used to connect to server # # @api public def connection @connection ||= Celluloid::WebSocket::Client.new("ws://#{hostname}:#{port}#{path}", Actor.current) end # the method will return the hostname of the server # # # @return [String] the hostname where the server runs on # # @api public def hostname @hostname ||= @options.fetch('hostname', CelluloidPubsub::WebServer::HOST) end # the method will return the port on which the server accepts connections # # # @return [String] the port on which the server accepts connections # # @api public def port @port ||= @options.fetch('port', nil) || CelluloidPubsub::WebServer.find_unused_port end # the method will return the path of the URL on which the servers acccepts the connection # # # @return [String] the URL path that the server is mounted on # # @api public def path @path ||= @options.fetch('path', CelluloidPubsub::WebServer::PATH) end # the method will terminate the current actor # # # @return [void] # # @api public def shutdown log_debug "#{self.class} tries to 'shudown'" terminate end # checks if debug is enabled # # # @return [boolean] # # @api public def debug_enabled? @options.fetch('enable_debug', false).to_s == 'true' end # subscribes to a channel . need to be used inside the connect block passed to the actor # # @param [string] channel # # @return [void] # # @api public def subscribe(channel, data = {}) log_debug("#{@actor.class} tries to subscribe to channel #{channel}") async.send_action('subscribe', channel, data) end # publishes to a channel some data (can be anything) # # @param [string] channel # @param [#to_s] data # # @return [void] # # @api public def publish(channel, data) send_action('publish', channel, data) end # unsubscribes current client from a channel # # @param [string] channel # # @return [void] # # @api public def unsubscribe(channel) send_action('unsubscribe', channel) end # unsubscribes all clients subscribed to a channel # # @param [string] channel # # @return [void] # # @api public def unsubscribe_clients(channel) send_action('unsubscribe_clients', channel) end # unsubscribes all clients from all channels # # @return [void] # # @api public def unsubscribe_all send_action('unsubscribe_all') end # callback executes after connection is opened and delegates action to actor # # @return [void] # # @api public def on_open log_debug("#{@actor.class} websocket connection opened") async.subscribe(@channel) if @channel.present? end # callback executes when actor receives a message from a subscribed channel # and parses the message using JSON.parse and dispatches the parsed # message to the original actor that made the connection # # @param [JSON] data # # @return [void] # # @api public def (data) = JSON.parse(data) log_debug("#{@actor.class} received JSON #{}") if @actor.respond_to?(:async) @actor.async.() else @actor.() end end # callback executes when connection closes # # @param [String] code # # @param [String] reason # # @return [void] # # @api public def on_close(code, reason) connection.terminate terminate log_debug("#{@actor.class} dispatching on close #{code} #{reason}") if @actor.respond_to?(:async) @actor.async.on_close(code, reason) else @actor.on_close(code, reason) end end private # method used to send an action to the webserver reactor , to a chanel and with data # # @param [String] action # @param [String] channel # @param [Hash] data # # @return [void] # # @api private def send_action(action, channel = nil, data = {}) data = data.is_a?(Hash) ? data : {} publishing_data = { 'client_action' => action, 'channel' => channel, 'data' => data }.reject { |_key, value| value.blank? } async.chat(publishing_data) end # method used to send messages to the webserver # checks too see if the message is a hash and if it is it will transform it to JSON and send it to the webser # otherwise will construct a JSON object that will have the key action with the value 'message" and the key message witth the parameter's value # # @param [Hash] message # # @return [void] # # @api private def chat() = .is_a?(Hash) ? .to_json : JSON.dump(action: 'message', message: ) log_debug("#{@actor.class} sends JSON #{}") connection.text end end |
#channel ⇒ String
The channel to which the client will subscribe to once the connection is open
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
# File 'lib/celluloid_pubsub/client.rb', line 17 class Client include CelluloidPubsub::BaseActor # The actor that made the connection # @return [Celluloid::Actor] actor to which callbacks will be delegated to attr_accessor :actor # options that can be used to connect to webser and send additional data # @return [Hash] the options that can be used to connect to webser and send additional data attr_accessor :options # The channel to which the client will subscribe to once the connection is open # @return [String] The channel to which the client will subscribe to attr_accessor :channel finalizer :shutdown # receives a list of options that are used to connect to the webserver and an actor to which the callbacks are delegated to # when receiving messages from a channel # # @param [Hash] options the options that can be used to connect to webser and send additional data # @option options [String] :actor The actor that made the connection # @option options [String] :channel The channel to which the client will subscribe to once the connection is open # @option options [String] :log_file_path The path to the log file where debug messages will be printed, otherwise will use STDOUT # @option options [String]:hostname The hostname on which the webserver runs on # @option options [String] :port The port on which the webserver runs on # @option options [String] :path The request path that the webserver accepts # # @return [void] # # @api public def initialize() @options = .stringify_keys! @actor ||= @options.fetch('actor', nil) @channel ||= @options.fetch('channel', nil) raise "#{self}: Please provide an actor in the options list!!!" if @actor.blank? supervise_actors setup_celluloid_logger end # the method will return the path to the log file where debug messages will be printed # # @return [String, nil] return the path to the log file where debug messages will be printed # # @api public def log_file_path @log_file_path ||= @options.fetch('log_file_path', nil) end # the method will link the current actor to the actor that is attached to, and the connection to the current actor # # @return [void] # # @api public def supervise_actors current_actor = Actor.current @actor.link current_actor if @actor.respond_to?(:link) current_actor.link connection end # the method will return the client that is used to # # # @return [Celluloid::WebSocket::Client] the websocket connection used to connect to server # # @api public def connection @connection ||= Celluloid::WebSocket::Client.new("ws://#{hostname}:#{port}#{path}", Actor.current) end # the method will return the hostname of the server # # # @return [String] the hostname where the server runs on # # @api public def hostname @hostname ||= @options.fetch('hostname', CelluloidPubsub::WebServer::HOST) end # the method will return the port on which the server accepts connections # # # @return [String] the port on which the server accepts connections # # @api public def port @port ||= @options.fetch('port', nil) || CelluloidPubsub::WebServer.find_unused_port end # the method will return the path of the URL on which the servers acccepts the connection # # # @return [String] the URL path that the server is mounted on # # @api public def path @path ||= @options.fetch('path', CelluloidPubsub::WebServer::PATH) end # the method will terminate the current actor # # # @return [void] # # @api public def shutdown log_debug "#{self.class} tries to 'shudown'" terminate end # checks if debug is enabled # # # @return [boolean] # # @api public def debug_enabled? @options.fetch('enable_debug', false).to_s == 'true' end # subscribes to a channel . need to be used inside the connect block passed to the actor # # @param [string] channel # # @return [void] # # @api public def subscribe(channel, data = {}) log_debug("#{@actor.class} tries to subscribe to channel #{channel}") async.send_action('subscribe', channel, data) end # publishes to a channel some data (can be anything) # # @param [string] channel # @param [#to_s] data # # @return [void] # # @api public def publish(channel, data) send_action('publish', channel, data) end # unsubscribes current client from a channel # # @param [string] channel # # @return [void] # # @api public def unsubscribe(channel) send_action('unsubscribe', channel) end # unsubscribes all clients subscribed to a channel # # @param [string] channel # # @return [void] # # @api public def unsubscribe_clients(channel) send_action('unsubscribe_clients', channel) end # unsubscribes all clients from all channels # # @return [void] # # @api public def unsubscribe_all send_action('unsubscribe_all') end # callback executes after connection is opened and delegates action to actor # # @return [void] # # @api public def on_open log_debug("#{@actor.class} websocket connection opened") async.subscribe(@channel) if @channel.present? end # callback executes when actor receives a message from a subscribed channel # and parses the message using JSON.parse and dispatches the parsed # message to the original actor that made the connection # # @param [JSON] data # # @return [void] # # @api public def (data) = JSON.parse(data) log_debug("#{@actor.class} received JSON #{}") if @actor.respond_to?(:async) @actor.async.() else @actor.() end end # callback executes when connection closes # # @param [String] code # # @param [String] reason # # @return [void] # # @api public def on_close(code, reason) connection.terminate terminate log_debug("#{@actor.class} dispatching on close #{code} #{reason}") if @actor.respond_to?(:async) @actor.async.on_close(code, reason) else @actor.on_close(code, reason) end end private # method used to send an action to the webserver reactor , to a chanel and with data # # @param [String] action # @param [String] channel # @param [Hash] data # # @return [void] # # @api private def send_action(action, channel = nil, data = {}) data = data.is_a?(Hash) ? data : {} publishing_data = { 'client_action' => action, 'channel' => channel, 'data' => data }.reject { |_key, value| value.blank? } async.chat(publishing_data) end # method used to send messages to the webserver # checks too see if the message is a hash and if it is it will transform it to JSON and send it to the webser # otherwise will construct a JSON object that will have the key action with the value 'message" and the key message witth the parameter's value # # @param [Hash] message # # @return [void] # # @api private def chat() = .is_a?(Hash) ? .to_json : JSON.dump(action: 'message', message: ) log_debug("#{@actor.class} sends JSON #{}") connection.text end end |
#options ⇒ Hash
options that can be used to connect to webser and send additional data
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
# File 'lib/celluloid_pubsub/client.rb', line 17 class Client include CelluloidPubsub::BaseActor # The actor that made the connection # @return [Celluloid::Actor] actor to which callbacks will be delegated to attr_accessor :actor # options that can be used to connect to webser and send additional data # @return [Hash] the options that can be used to connect to webser and send additional data attr_accessor :options # The channel to which the client will subscribe to once the connection is open # @return [String] The channel to which the client will subscribe to attr_accessor :channel finalizer :shutdown # receives a list of options that are used to connect to the webserver and an actor to which the callbacks are delegated to # when receiving messages from a channel # # @param [Hash] options the options that can be used to connect to webser and send additional data # @option options [String] :actor The actor that made the connection # @option options [String] :channel The channel to which the client will subscribe to once the connection is open # @option options [String] :log_file_path The path to the log file where debug messages will be printed, otherwise will use STDOUT # @option options [String]:hostname The hostname on which the webserver runs on # @option options [String] :port The port on which the webserver runs on # @option options [String] :path The request path that the webserver accepts # # @return [void] # # @api public def initialize() @options = .stringify_keys! @actor ||= @options.fetch('actor', nil) @channel ||= @options.fetch('channel', nil) raise "#{self}: Please provide an actor in the options list!!!" if @actor.blank? supervise_actors setup_celluloid_logger end # the method will return the path to the log file where debug messages will be printed # # @return [String, nil] return the path to the log file where debug messages will be printed # # @api public def log_file_path @log_file_path ||= @options.fetch('log_file_path', nil) end # the method will link the current actor to the actor that is attached to, and the connection to the current actor # # @return [void] # # @api public def supervise_actors current_actor = Actor.current @actor.link current_actor if @actor.respond_to?(:link) current_actor.link connection end # the method will return the client that is used to # # # @return [Celluloid::WebSocket::Client] the websocket connection used to connect to server # # @api public def connection @connection ||= Celluloid::WebSocket::Client.new("ws://#{hostname}:#{port}#{path}", Actor.current) end # the method will return the hostname of the server # # # @return [String] the hostname where the server runs on # # @api public def hostname @hostname ||= @options.fetch('hostname', CelluloidPubsub::WebServer::HOST) end # the method will return the port on which the server accepts connections # # # @return [String] the port on which the server accepts connections # # @api public def port @port ||= @options.fetch('port', nil) || CelluloidPubsub::WebServer.find_unused_port end # the method will return the path of the URL on which the servers acccepts the connection # # # @return [String] the URL path that the server is mounted on # # @api public def path @path ||= @options.fetch('path', CelluloidPubsub::WebServer::PATH) end # the method will terminate the current actor # # # @return [void] # # @api public def shutdown log_debug "#{self.class} tries to 'shudown'" terminate end # checks if debug is enabled # # # @return [boolean] # # @api public def debug_enabled? @options.fetch('enable_debug', false).to_s == 'true' end # subscribes to a channel . need to be used inside the connect block passed to the actor # # @param [string] channel # # @return [void] # # @api public def subscribe(channel, data = {}) log_debug("#{@actor.class} tries to subscribe to channel #{channel}") async.send_action('subscribe', channel, data) end # publishes to a channel some data (can be anything) # # @param [string] channel # @param [#to_s] data # # @return [void] # # @api public def publish(channel, data) send_action('publish', channel, data) end # unsubscribes current client from a channel # # @param [string] channel # # @return [void] # # @api public def unsubscribe(channel) send_action('unsubscribe', channel) end # unsubscribes all clients subscribed to a channel # # @param [string] channel # # @return [void] # # @api public def unsubscribe_clients(channel) send_action('unsubscribe_clients', channel) end # unsubscribes all clients from all channels # # @return [void] # # @api public def unsubscribe_all send_action('unsubscribe_all') end # callback executes after connection is opened and delegates action to actor # # @return [void] # # @api public def on_open log_debug("#{@actor.class} websocket connection opened") async.subscribe(@channel) if @channel.present? end # callback executes when actor receives a message from a subscribed channel # and parses the message using JSON.parse and dispatches the parsed # message to the original actor that made the connection # # @param [JSON] data # # @return [void] # # @api public def (data) = JSON.parse(data) log_debug("#{@actor.class} received JSON #{}") if @actor.respond_to?(:async) @actor.async.() else @actor.() end end # callback executes when connection closes # # @param [String] code # # @param [String] reason # # @return [void] # # @api public def on_close(code, reason) connection.terminate terminate log_debug("#{@actor.class} dispatching on close #{code} #{reason}") if @actor.respond_to?(:async) @actor.async.on_close(code, reason) else @actor.on_close(code, reason) end end private # method used to send an action to the webserver reactor , to a chanel and with data # # @param [String] action # @param [String] channel # @param [Hash] data # # @return [void] # # @api private def send_action(action, channel = nil, data = {}) data = data.is_a?(Hash) ? data : {} publishing_data = { 'client_action' => action, 'channel' => channel, 'data' => data }.reject { |_key, value| value.blank? } async.chat(publishing_data) end # method used to send messages to the webserver # checks too see if the message is a hash and if it is it will transform it to JSON and send it to the webser # otherwise will construct a JSON object that will have the key action with the value 'message" and the key message witth the parameter's value # # @param [Hash] message # # @return [void] # # @api private def chat() = .is_a?(Hash) ? .to_json : JSON.dump(action: 'message', message: ) log_debug("#{@actor.class} sends JSON #{}") connection.text end end |
Instance Method Details
#connection ⇒ Celluloid::WebSocket::Client
the method will return the client that is used to
82 83 84 |
# File 'lib/celluloid_pubsub/client.rb', line 82 def connection @connection ||= Celluloid::WebSocket::Client.new("ws://#{hostname}:#{port}#{path}", Actor.current) end |
#debug_enabled? ⇒ boolean
checks if debug is enabled
133 134 135 |
# File 'lib/celluloid_pubsub/client.rb', line 133 def debug_enabled? @options.fetch('enable_debug', false).to_s == 'true' end |
#hostname ⇒ String
the method will return the hostname of the server
92 93 94 |
# File 'lib/celluloid_pubsub/client.rb', line 92 def hostname @hostname ||= @options.fetch('hostname', CelluloidPubsub::WebServer::HOST) end |
#log_file_path ⇒ String?
the method will return the path to the log file where debug messages will be printed
61 62 63 |
# File 'lib/celluloid_pubsub/client.rb', line 61 def log_file_path @log_file_path ||= @options.fetch('log_file_path', nil) end |
#on_close(code, reason) ⇒ void
This method returns an undefined value.
callback executes when connection closes
230 231 232 233 234 235 236 237 238 239 |
# File 'lib/celluloid_pubsub/client.rb', line 230 def on_close(code, reason) connection.terminate terminate log_debug("#{@actor.class} dispatching on close #{code} #{reason}") if @actor.respond_to?(:async) @actor.async.on_close(code, reason) else @actor.on_close(code, reason) end end |
#on_message(data) ⇒ void
This method returns an undefined value.
callback executes when actor receives a message from a subscribed channel and parses the message using JSON.parse and dispatches the parsed message to the original actor that made the connection
211 212 213 214 215 216 217 218 219 |
# File 'lib/celluloid_pubsub/client.rb', line 211 def (data) = JSON.parse(data) log_debug("#{@actor.class} received JSON #{}") if @actor.respond_to?(:async) @actor.async.() else @actor.() end end |
#on_open ⇒ void
This method returns an undefined value.
callback executes after connection is opened and delegates action to actor
197 198 199 200 |
# File 'lib/celluloid_pubsub/client.rb', line 197 def on_open log_debug("#{@actor.class} websocket connection opened") async.subscribe(@channel) if @channel.present? end |
#path ⇒ String
the method will return the path of the URL on which the servers acccepts the connection
112 113 114 |
# File 'lib/celluloid_pubsub/client.rb', line 112 def path @path ||= @options.fetch('path', CelluloidPubsub::WebServer::PATH) end |
#port ⇒ String
the method will return the port on which the server accepts connections
102 103 104 |
# File 'lib/celluloid_pubsub/client.rb', line 102 def port @port ||= @options.fetch('port', nil) || CelluloidPubsub::WebServer.find_unused_port end |
#publish(channel, data) ⇒ void
This method returns an undefined value.
publishes to a channel some data (can be anything)
157 158 159 |
# File 'lib/celluloid_pubsub/client.rb', line 157 def publish(channel, data) send_action('publish', channel, data) end |
#shutdown ⇒ void
This method returns an undefined value.
the method will terminate the current actor
122 123 124 125 |
# File 'lib/celluloid_pubsub/client.rb', line 122 def shutdown log_debug "#{self.class} tries to 'shudown'" terminate end |
#subscribe(channel, data = {}) ⇒ void
This method returns an undefined value.
subscribes to a channel . need to be used inside the connect block passed to the actor
144 145 146 147 |
# File 'lib/celluloid_pubsub/client.rb', line 144 def subscribe(channel, data = {}) log_debug("#{@actor.class} tries to subscribe to channel #{channel}") async.send_action('subscribe', channel, data) end |
#supervise_actors ⇒ void
This method returns an undefined value.
the method will link the current actor to the actor that is attached to, and the connection to the current actor
70 71 72 73 74 |
# File 'lib/celluloid_pubsub/client.rb', line 70 def supervise_actors current_actor = Actor.current @actor.link current_actor if @actor.respond_to?(:link) current_actor.link connection end |
#unsubscribe(channel) ⇒ void
This method returns an undefined value.
unsubscribes current client from a channel
168 169 170 |
# File 'lib/celluloid_pubsub/client.rb', line 168 def unsubscribe(channel) send_action('unsubscribe', channel) end |
#unsubscribe_all ⇒ void
This method returns an undefined value.
unsubscribes all clients from all channels
188 189 190 |
# File 'lib/celluloid_pubsub/client.rb', line 188 def unsubscribe_all send_action('unsubscribe_all') end |
#unsubscribe_clients(channel) ⇒ void
This method returns an undefined value.
unsubscribes all clients subscribed to a channel
179 180 181 |
# File 'lib/celluloid_pubsub/client.rb', line 179 def unsubscribe_clients(channel) send_action('unsubscribe_clients', channel) end |