Class: Service
- Defined in:
- lib/ff/ruby/server/sdk/connector/service.rb
Direct Known Subclasses
Instance Method Summary collapse
-
#initialize ⇒ Service
constructor
A new instance of Service.
- #start ⇒ Object
- #stop ⇒ Object
Methods inherited from Closeable
Constructor Details
#initialize ⇒ Service
Returns a new instance of Service.
5 6 7 8 |
# File 'lib/ff/ruby/server/sdk/connector/service.rb', line 5 def initialize @tbi = "To be implemented" end |
Instance Method Details
#start ⇒ Object
10 11 12 13 |
# File 'lib/ff/ruby/server/sdk/connector/service.rb', line 10 def start raise @tbi end |
#stop ⇒ Object
15 16 17 18 |
# File 'lib/ff/ruby/server/sdk/connector/service.rb', line 15 def stop raise @tbi end |