Page MenuHomeSealhub

channel.js
No OneTemporary

channel.js

var Sealious = require("../main.js");
var chip = require("./chip.js");
/*
Represents channel.
@constructor
@param {string} name - name of channel
return void
*/
function channel (name) {
this.name = name;
this.longid = "channel." + name;
this.default_configuration = {};
Sealious.ChipManager.add_chip("channel", this.name, this);
}
channel.prototype = new chip();
module.exports = channel;

File Metadata

Mime Type
text/plain
Expires
Mon, Dec 23, 23:55 (1 d, 1 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
556971
Default Alt Text
channel.js (396 B)

Event Timeline