Class: QuickBase::EventHandler

Inherits:
Object
  • Object
show all
Defined in:
lib/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



5030
5031
5032
# File 'lib/QuickBaseClient.rb', line 5030

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