本文整理匯總了TypeScript中sockets.comm_socket.on方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript comm_socket.on方法的具體用法?TypeScript comm_socket.on怎麽用?TypeScript comm_socket.on使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類sockets.comm_socket
的用法示例。
在下文中一共展示了comm_socket.on方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: EventEmitter
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import {comm_socket} from "sockets";
import {EventEmitter} from "eventemitter3";
let listeners: {[id: number]: Array<any>} = {};
let state = {};
let event_emitter = new EventEmitter();
comm_socket.on("connect", () => {
let list = [];
for (let id in state) {
list.push(id);
}
if (list.length) {
comm_socket.send("user/monitor", list);
}
});
comm_socket.on("user/state", (states) => {
let i;
for (let id in states) {
state[id] = states[id];
for (i = 0; i < listeners[id].length; ++i) {
listeners[id][i](id, state[id]);
}
}
event_emitter.emit("users-online-updated");
});
示例2:
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/* Inter tab communications library */
import {comm_socket} from "sockets";
let registrations = {};
comm_socket.on("itc", (obj) => {
if (obj.event in registrations) {
for (let i = 0; i < registrations[obj.event].length; ++i) {
registrations[obj.event][i](obj.data);
}
}
});
export default {
register: (event, cb) => {
if (!(event in registrations)) {
registrations[event] = [];
}
registrations[event].push(cb);
},
send: (event, data) => {
comm_socket.send("itc", {"event": event, "data": data});
}
};