class Protocol::WebSocket::BinaryFrame

Constants

OPCODE

Public Instance Methods

apply(connection) click to toggle source
# File lib/protocol/websocket/binary_frame.rb, line 32
def apply(connection)
        connection.receive_binary(self)
end
data?() click to toggle source
# File lib/protocol/websocket/binary_frame.rb, line 28
def data?
        true
end