class Async::WebSocket::Client::Framer

def close

def close
	super
	
	if @pool
		@pool.release(@connection)
		@pool = nil
		@connection = nil
	end
end

def initialize(pool, connection, stream)

def initialize(pool, connection, stream)
	super(stream)
	@pool = pool
	@connection = connection
end