本文整理汇总了TypeScript中ws.close函数的典型用法代码示例。如果您正苦于以下问题:TypeScript close函数的具体用法?TypeScript close怎么用?TypeScript close使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了close函数的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: if
dummyRes.writeHead = (statusCode: number, _statusMessage: never, headers: never) => {
if (statusCode && statusCode > 200) {
// tslint:disable-next-line no-console
console.error(
`Something used 'writeHead' to write a '${statusCode}' error for websockets - check the middleware you're passing!`,
);
socket.close();
} else if (headers) {
// tslint:disable-next-line no-console
console.error(
"Passing headers to 'writeHead' is not supported with websockets currently - check the middleware you're passing",
);
socket.close();
}
};
开发者ID:calebmer,项目名称:postgraphql,代码行数:15,代码来源:subscriptions.ts
示例2:
ws1.on('open', () => {
ws1.send(JSON.stringify({
"ev": "CREATE_MESSAGE",
"value": "sample message"
}))
ws1.close()
})
开发者ID:HaiTo,项目名称:respass,代码行数:7,代码来源:test_wsserver.ts
示例3: reject
ws.on("message", (response) => {
const responseParsed = JSON.parse(response.toString());
if (responseParsed.id !== jsonId) {
return reject("Bad ID");
}
resolve(responseParsed.result);
ws.close();
});
开发者ID:AugurProject,项目名称:augur_node,代码行数:8,代码来源:utils.ts
示例4: setTimeout
setTimeout(() => {
if(ping_available === false) {
console.error("ping is not available")
ws.close()
clearInterval(ping_interval)
return
}
} ,4000)
开发者ID:sketchglass,项目名称:respass,代码行数:8,代码来源:wsserver.ts
示例5: reject
function reject(mes: string): void {
sendEvent({
type: 'error',
value: {
message: mes
}
});
ws.close();
}
开发者ID:Tosuke,项目名称:Misskey-API,代码行数:9,代码来源:group-talk.ts
示例6:
const reject = (mes: string = 'authentication failed') => {
const res = {
type: 'error',
value: {
message: mes
}
};
ws.send(JSON.stringify(res));
ws.close();
};
开发者ID:Tosuke,项目名称:Misskey-API,代码行数:10,代码来源:stream-handler.ts
示例7: onNvimNotify
function onNvimNotify(method: string) {
switch (method) {
case WS_STOP_COMMAND: {
ws.close();
}
case DUMP_COMMAND: {
scripts.dump();
}
}
}
开发者ID:duskpoet,项目名称:chrome-debugger-vim,代码行数:10,代码来源:inspect-site.ts
示例8: logHandleFunc
ws.on('message', (data) => {
// Handle received message which contains log data in stringified JSON.
if (argv.debug) {
console.error(`Received message: ${data}`);
}
try {
logHandleFunc(parseLogStream(data as string));
} catch (e) {
ws.close();
reject(e);
}
});
开发者ID:SkygearIO,项目名称:skycli,代码行数:12,代码来源:logs.ts
注:本文中的ws.close函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论