socket.unref()方法是dgram模块中Socket类的内置应用程序编程接口,用于即使套接字仍在侦听也允许进程退出。
用法:
const socket.unref()
参数:此方法不接受任何参数。
返回值:此方法返回其中包含所有信息的特定套接字的引用。
范例1: 文件名:index.js
// Node.js program to demonstrate the
// server.unref() property
// Importing dgram module
var dgram = require('dgram');
// Creating and initializing client
// and server socket
var client = dgram.createSocket("udp4");
var server = dgram.createSocket("udp4");
// Handling the message event
server.on("message", function (msg) {
// Displaying the client message
process.stdout.write("UDP String:"
+ msg + "\n");
// Exiting process
process.exit();
})// Binding server with port
.bind(1234, () => {
// Getting the reference of the server
// by using unref() method
const size = server.unref();
// Display the result
console.log(size.eventNames());
});
// Client sending message to server
client.send("Hello", 0, 7, 1234, "localhost");
输出:
[ 'message' ] UDP String:Hello
范例2: 文件名:index.js
// Node.js program to demonstrate the
// server.unref() method
// Importing dgram module
var dgram = require('dgram');
// Creating and initializing client
// and server socket
var client = dgram.createSocket("udp4");
var server = dgram.createSocket("udp4");
// Handling the message event
server.on("message", function (msg) {
// Displaying the client message
process.stdout.write("UDP String:"
+ msg + "\n");
// Exiting process
process.exit();
});
// Handling the listening event
server.on('listening', () => {
// Getting address information
// for the server
const address = server.address();
// Display the result
console.log(`server listening
${address.address}:${address.port}`);
});
// Binding server with port address
// by using bind() method
server.bind(1234, () => {
// Getting the reference of server
// by using unref() methods
const size = server.unref();
// Display the result
console.log(size.eventNames());
});
// Client sending message to server
client.send("Hello", 0, 7, 1234, "localhost");
使用以下命令运行index.js文件:
node index.js
输出:
server listening 0.0.0.0:1234 [ 'message', 'listening' ] UDP String:Hello
参考:https://nodejs.org/dist/latest-v12.x/docs/api/dgram.html#dgram_socket_unref
相关用法
- Node.js console.timeLog()用法及代码示例
- Node.js GM channel()用法及代码示例
- Node.js GM blur()用法及代码示例
- Node.js GM chop()用法及代码示例
- Node.js GM implode()用法及代码示例
- Node.js GM edge()用法及代码示例
- Node.js GM crop()用法及代码示例
- Node.js GM charcoal()用法及代码示例
- Node.js GM gaussian()用法及代码示例
- Node.js GM enhance()用法及代码示例
- Node.js GM flop()用法及代码示例
- Node.js GM flip()用法及代码示例
- Node.js GM despeckle()用法及代码示例
- Node.js GM bordercolor()用法及代码示例
- Node.js GM border()用法及代码示例
- Node.js GM equalize()用法及代码示例
注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 Node.js socket.unref() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。