class DEBUGGER__::UI_CDP::WebSocketUtils::Frame
Attributes
Public Class Methods
Source
# File bundled-src/debug-1.11.1/lib/debug/server_cdp.rb, line 251 def initialize @b = ''.b end
Public Instance Methods
Source
# File bundled-src/debug-1.11.1/lib/debug/server_cdp.rb, line 255 def << obj case obj when String @b << obj.b when Enumerable obj.each{|e| self << e} end end
Source
# File bundled-src/debug-1.11.1/lib/debug/server_cdp.rb, line 264 def char bytes @b << bytes end
Source
# File bundled-src/debug-1.11.1/lib/debug/server_cdp.rb, line 272 def uint16 bytes @b << [bytes].pack('n*') end
Source
# File bundled-src/debug-1.11.1/lib/debug/server_cdp.rb, line 268 def ulonglong bytes @b << [bytes].pack('Q>') end