Method: RJR::Nodes::TCPConnection#send_msg
- Defined in:
- lib/rjr/nodes/tcp.rb
#send_msg(data) ⇒ Object
Send data safely using local connection
50 51 52 53 54 |
# File 'lib/rjr/nodes/tcp.rb', line 50 def send_msg(data) @send_lock.synchronize{ send_data(data) } end |