lib/rrj/janus/responses/admin.rb in ruby_rabbitmq_janus-3.0.0.pre.366 vs lib/rrj/janus/responses/admin.rb in ruby_rabbitmq_janus-3.0.0.pre.382
- old
+ new
@@ -5,58 +5,62 @@
module Responses
# Response for admin request
#
# @see Example request response https://janus.conf.meetecho.com/docs/admin.html
class Admin < Standard
- # List of sessions running in Janus Instance.
- #
- # @return [Array] List of sessions
+ # @return [Array] List of sessions running in Janus Instance.
def sessions
read_data(__method__.to_s)
end
- # List of handles running in one session in Janus Instance.
- #
- # @return [Array] List of handles
+ # @return [Array] List of handles running
+ # in one session in Janus Instance.
def handles
read_data(__method__.to_s)
end
- # Info to session or handle in Janus Instance
- #
- # @return [Hash] Information to session/handle
+ # @return [Hash] Information to session/handle in Janus Instance.
def info
read_data(__method__.to_s)
end
+ # @return [Boolean] Information status to debug mode for libnice.
def libnice_debug
read_data(__method__.to_s)
end
+ # @return [Boolean] Information status to debug mode
+ # in Janus Intance on the fly.
def locking_debug
read_data(__method__.to_s)
end
+ # @return [Boolean] Information about color in log messages.
def log_colors
read_data(__method__.to_s)
end
+ # @return [Integer] Level to debug mode to Janus Instance.
def level
read_data(__method__.to_s)
end
+ # @return [Boolean] Status to timestampping for log messages.
def log_timestamps
read_data(__method__.to_s)
end
+ # @return [Integer] Level to max nack queue configured.
def max_nack_queue
read_data(__method__.to_s)
end
+ # @return [Integer] No-media timer property.
def no_media_timer
read_data(__method__.to_s)
end
+ # @return [Integer] Timeout for session.
def timeout
read_data(__method__.to_s)
end
private