Class: QuickBase::EventHandler

Inherits:
Object
  • Object
show all
Defined in:
lib/broker/client/QuickBaseClient.rb

Overview

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.

Instance Method Summary collapse

Instance Method Details

#handle(event) ⇒ Object



5042
5043
5044
# File 'lib/broker/client/QuickBaseClient.rb', line 5042

def handle( event )
   puts event if event and event.is_a?( String )
end