Method: PM::Patch#start
- Defined in:
- lib/patchmaster/patch.rb
#start ⇒ Object
Send start_bytes to each connection.
22 23 24 25 26 27 |
# File 'lib/patchmaster/patch.rb', line 22 def start unless @running @connections.each { |conn| conn.start(@start_bytes) } @running = true end end |