CIRCChannel.join Member

Syntax

object.join(key);

Arguments

ArgumentSummary
key

Returns

Remarks

See Also

Source Code

function chan_join(key)
{
var joinFailedFn = function _joinFailedFn(t)
{
delete t.joinTimer;
t.busy = false;
updateProgress();
}
if (!this.joined)
{
this.joinTimer = setTimeout(joinFailedFn, 30000, this);
this.busy = true;
updateProgress();
}
this._join(key);
}