Class: Protocol::WebSocket::PingMessage

Inherits:
Message
  • Object
show all
Defined in:
lib/protocol/websocket/message.rb

Overview

Represents a ping message that can be sent over a WebSocket connection.

Instance Attribute Summary

Attributes inherited from Message

#The message buffer., #buffer

Instance Method Summary collapse

Methods inherited from Message

#==, #encoding, generate, #initialize, #parse, #size, #to_h, #to_str

Constructor Details

This class inherits a constructor from Protocol::WebSocket::Message

Instance Method Details

#send(connection) ⇒ Object



78
79
80
# File 'lib/protocol/websocket/message.rb', line 78

def send(connection)
  connection.send_ping(@buffer)
end