Sha256: 3641551621dbe59ddc7837ec5e39912adf71c43cce435be7c4ec3b03d48ad876
Contents?: true
Size: 404 Bytes
Versions: 19
Compression:
Stored size: 404 Bytes
Contents
module Bixby module WebSocket class Response < Message def initialize(json_response, id, headers=nil) if json_response.respond_to? :headers then headers = json_response.headers end super(id, "rpc_result", headers) @body = json_response.to_wire end def json_response JsonResponse.from_json(body) end end end end
Version data entries
19 entries across 19 versions & 1 rubygems