Class: Walkman::Services::Base
- Inherits:
-
Object
- Object
- Walkman::Services::Base
- Defined in:
- lib/walkman/services/base.rb
Direct Known Subclasses
Instance Method Summary collapse
Instance Method Details
#play(song) ⇒ Object
16 17 18 |
# File 'lib/walkman/services/base.rb', line 16 def play(song) raise "Implement in Service" end |
#restart ⇒ Object
12 13 14 |
# File 'lib/walkman/services/base.rb', line 12 def restart raise "Implement in Service" end |
#shutdown ⇒ Object
8 9 10 |
# File 'lib/walkman/services/base.rb', line 8 def shutdown raise "Implement in Service" end |
#startup ⇒ Object
4 5 6 |
# File 'lib/walkman/services/base.rb', line 4 def startup raise "Implement in Service" end |
#stop ⇒ Object
20 21 22 |
# File 'lib/walkman/services/base.rb', line 20 def stop raise "Implement in Service" end |