ClientImpl.prototype._schedule_message = function()

in content/lib/paho-mqtt.js [1069:1075]


	ClientImpl.prototype._schedule_message = function (message) {
		this._msg_queue.push(message);
		// Process outstanding messages in the queue if we have an  open socket, and have received CONNACK.
		if (this.connected) {
			this._process_queue();
		}
	};