Channel ancestor class
[Source]
# File lib/qrack/channel.rb, line 8 8: def initialize(client) 9: @frame_buffer = [] 10: @client = client 11: @number = client.channels.size 12: @active = false 13: client.channels[@number] = self 14: end
[Validate]