Sha256: b892915974f617acfc81962a64b3e54ddc3cf954ec8f3f2d34f0277c9cfe698c
Contents?: true
Size: 918 Bytes
Versions: 20
Compression:
Stored size: 918 Bytes
Contents
# frozen_string_literal: true module RubyRabbitmqJanus module Errors module Janus module Responses module Event class Base < RubyRabbitmqJanus::Errors::BaseJanus def initialize(message) super 'Event', message end end class Event < Base def initialize super 'Error janus information reading' end end class Data < Base def initialize super 'Error plugin data information reading' end end class Jsep < Base def initialize super 'Error JSEP information reading' end end class Keys < Base def initialize super 'Error session_id and sender information reading' end end end end end end end
Version data entries
20 entries across 20 versions & 1 rubygems