= private = protected
write_service()
Creates a thread that picks up UDP packets and passes them to do_write for decoding.
# File lib/rinda/ring.rb, line 44 def write_service Thread.new do loop do msg = @soc.recv(1024) do_write(msg) end end end