Class: Pubnub::Presence
- Inherits:
-
SubscribeEvent
- Object
- Event
- SubscribeEvent
- Pubnub::Presence
- Includes:
- Celluloid, Validator::Presence
- Defined in:
- lib/pubnub/events/presence.rb
Overview
Holds presence functionality, beware, most of presence functionality is held by SubscribeEvent
Instance Attribute Summary
Attributes inherited from SubscribeEvent
#c_cb_pool, #channel, #g_cb_pool, #group, #heart, #wc_cb_pool, #wildcard_channel
Attributes inherited from Event
#callback, #channel, #fresh_clone, #given_options, #group, #idle_timeout, #open_timeout, #origin, #presence_callback, #read_timeout, #ssl, #state, #wildcard_channel
Instance Method Summary collapse
- #format_channels ⇒ Object
-
#initialize(options, app) ⇒ Presence
constructor
A new instance of Presence.
Methods included from Validator::Presence
Methods included from Validator::CommonValidator
#validate_origin, #validate_publish_key, #validate_subscribe_key
Methods inherited from SubscribeEvent
Methods included from Formatter
channels_for_url, classify_method, encode, format_channel, format_group, format_message, format_presence_channel, make_channel_array, params_hash_to_url_params, parse_json
Methods included from SubscribeEvent::Removing
#remove, #remove_channels, #remove_groups
Methods included from SubscribeEvent::Adding
#add, #add_channels, #add_groups
Methods inherited from Event
#finalized?, #fire, #send_request, #sync?, #uri
Constructor Details
#initialize(options, app) ⇒ Presence
Returns a new instance of Presence.
9 10 11 12 |
# File 'lib/pubnub/events/presence.rb', line 9 def initialize(, app) @event = :presence super end |
Instance Method Details
#format_channels ⇒ Object
14 15 16 17 |
# File 'lib/pubnub/events/presence.rb', line 14 def format_channels @channel = Formatter.format_channel(@channel || @channels) @channel = @channel.map { |c| c + '-pnpres' } end |