class QuickBase::EventHandler
To subscribe to events fired by the Client
class, derive from this class, override handle( event ), and call subscribe( event, self ). See Client.subscribe()
for a list of events.
Public Instance Methods
handle( event )
click to toggle source
# File lib/QuickBaseClient.rb, line 5035 def handle( event ) puts event if event and event.is_a?( String ) end