class Discorb::Gateway::RawConnection
A class for connecting websocket with raw bytes data. @private
Public Class Methods
new(...)
click to toggle source
Calls superclass method
# File lib/discorb/gateway.rb, line 1001 def initialize(...) super end
Public Instance Methods
dump(object)
click to toggle source
# File lib/discorb/gateway.rb, line 1010 def dump(object) # noop object.to_s end
parse(buffer)
click to toggle source
# File lib/discorb/gateway.rb, line 1005 def parse(buffer) # noop buffer.to_s end