Class: Quark::Quark::WebSocket
Constant Summary
DatawireQuarkCore::Static::Unassigned
Instance Method Summary
collapse
_lazy_statics, static, unlazy_statics
#to_s
Constructor Details
Returns a new instance of WebSocket.
2333
2334
2335
2336
2337
|
# File 'lib/quark.rb', line 2333
def initialize()
self.__init_fields__
nil
end
|
Instance Method Details
#__init_fields__ ⇒ Object
2360
2361
2362
2363
2364
|
# File 'lib/quark.rb', line 2360
def __init_fields__()
nil
end
|
#close ⇒ Object
2354
2355
2356
2357
2358
|
# File 'lib/quark.rb', line 2354
def close()
raise NotImplementedError, '`WebSocket.close` is an abstract method'
nil
end
|
#send(message) ⇒ Object
2342
2343
2344
2345
2346
|
# File 'lib/quark.rb', line 2342
def send(message)
raise NotImplementedError, '`WebSocket.send` is an abstract method'
nil
end
|
#sendBinary(bytes) ⇒ Object
2348
2349
2350
2351
2352
|
# File 'lib/quark.rb', line 2348
def sendBinary(bytes)
raise NotImplementedError, '`WebSocket.sendBinary` is an abstract method'
nil
end
|