Class: ClientCallback
- Defined in:
- lib/ff/ruby/server/sdk/api/client_callback.rb
Direct Known Subclasses
Constant Summary collapse
- TBI =
RuntimeError.new("To be implemented")
Instance Method Summary collapse
-
#initialize ⇒ ClientCallback
constructor
A new instance of ClientCallback.
- #is_closing ⇒ Object
- #on_auth_failed ⇒ Object
- #on_auth_success ⇒ Object
- #on_authorized ⇒ Object
- #on_metrics_processor_ready ⇒ Object
- #on_processor_ready(processor) ⇒ Object
- #on_update_processor_ready ⇒ Object
- #update(message, manual) ⇒ Object
Methods inherited from Closeable
Constructor Details
#initialize ⇒ ClientCallback
Returns a new instance of ClientCallback.
7 8 9 |
# File 'lib/ff/ruby/server/sdk/api/client_callback.rb', line 7 def initialize super end |
Instance Method Details
#is_closing ⇒ Object
26 27 28 29 |
# File 'lib/ff/ruby/server/sdk/api/client_callback.rb', line 26 def is_closing raise TBI end |
#on_auth_failed ⇒ Object
16 17 18 19 |
# File 'lib/ff/ruby/server/sdk/api/client_callback.rb', line 16 def on_auth_failed raise TBI end |
#on_auth_success ⇒ Object
11 12 13 14 |
# File 'lib/ff/ruby/server/sdk/api/client_callback.rb', line 11 def on_auth_success raise TBI end |
#on_authorized ⇒ Object
21 22 23 24 |
# File 'lib/ff/ruby/server/sdk/api/client_callback.rb', line 21 def raise TBI end |
#on_metrics_processor_ready ⇒ Object
41 42 43 44 |
# File 'lib/ff/ruby/server/sdk/api/client_callback.rb', line 41 def on_metrics_processor_ready raise TBI end |
#on_processor_ready(processor) ⇒ Object
31 32 33 34 |
# File 'lib/ff/ruby/server/sdk/api/client_callback.rb', line 31 def on_processor_ready(processor) raise TBI end |
#on_update_processor_ready ⇒ Object
36 37 38 39 |
# File 'lib/ff/ruby/server/sdk/api/client_callback.rb', line 36 def on_update_processor_ready raise TBI end |
#update(message, manual) ⇒ Object
46 47 48 49 |
# File 'lib/ff/ruby/server/sdk/api/client_callback.rb', line 46 def update(, manual) raise TBI end |