Method: Tipi::Websocket#send

Defined in:
lib/tipi/websocket.rb

#send(data) ⇒ Object Also known as: <<



54
55
56
57
58
59
# File 'lib/tipi/websocket.rb', line 54

def send(data)
  frame = OutgoingFrame.new(
    version: @version, data: data, type: :text
  )
  @conn << frame.to_s
end