Module: Thespian::Strategy::Interface
Overview
:nodoc:
Instance Method Summary collapse
- #<<(message) ⇒ Object
- #mailbox_size ⇒ Object
- #receive ⇒ Object
- #salvage_mailbox ⇒ Object
- #start ⇒ Object
- #stop ⇒ Object
Instance Method Details
#<<(message) ⇒ Object
17 18 19 |
# File 'lib/thespian/strategies/interface.rb', line 17 def <<() raise "not implemented" end |
#mailbox_size ⇒ Object
21 22 23 |
# File 'lib/thespian/strategies/interface.rb', line 21 def mailbox_size raise "not implemented" end |
#receive ⇒ Object
13 14 15 |
# File 'lib/thespian/strategies/interface.rb', line 13 def receive raise "not implemented" end |
#salvage_mailbox ⇒ Object
29 30 31 |
# File 'lib/thespian/strategies/interface.rb', line 29 def salvage_mailbox raise "not implemented" end |
#start ⇒ Object
9 10 11 |
# File 'lib/thespian/strategies/interface.rb', line 9 def start raise "not implemented" end |
#stop ⇒ Object
25 26 27 |
# File 'lib/thespian/strategies/interface.rb', line 25 def stop raise "not implemented" end |