当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js process.abort()用法及代码示例


process.abort()属性是流程模块的内置应用程序编程接口,用于立即中止正在运行的NodeJS流程。它还会生成一个核心文件。

用法:

process.abort()

参数:此函数不接受任何参数。

返回类型:它具有void返回类型。

以下示例说明了Node.js中process.abort()属性的用法:



范例1:

index.js


// Function to illustrate abort method
const RunWithAbort = () => {
    console.log('Start...');
  
    // It prints GeeksForGeeks after every 1 second
    setInterval((function() {
        return console.log('GeeksForGeeks');
    }), 1000);
  
    // It calls process.abort() after 5 seconds
    setTimeout((function() {
        return process.abort();
    }), 5000);
};
  
// Function to illustrate working of above function 
// without abort method
const RunWithoutAbort = () => {
    console.log('Start...');
  
    // It prints GeeksForGeeks after every 1 second
    setInterval((function() {
        return console.log('GeeksForGeeks');
    }), 1000);
};
  
// Uncomment below line to call RunWithoutAbort
// function it will run in infinitely
// RunWithoutAbort();
  
// Call RunWithAbort function
// it will abort after 5 seconds
RunWithAbort();

使用以下命令运行index.js文件:

node index.js

输出:我们将在控制台屏幕上看到以下输出。

Start...
GeeksForGeeks
GeeksForGeeks
GeeksForGeeks
GeeksForGeeks
Abort trap:6

范例2:

index.js


// Function to illustrate abort method
const RunWithAbort = () => {
    console.log('Start...');
  
    // It prints GeeksForGeeks after every 1 second
    setInterval((function() {
        return console.log('GeeksForGeeks:1 second');
    }), 1000);
  
    // It prints GeeksForGeeks after every 2 seconds
    setInterval((function() {
        return console.log('GeeksForGeeks:2 second');
    }), 2000);
  
    // It calls process.abort() after 5 seconds
    setTimeout((function() {
        return process.abort();
    }), 5000);
};
  
const RunWithoutAbort = () => {
    console.log('Start...');
  
    // It prints GeeksForGeeks after every 1 second
    setInterval((function() {
        return console.log('GeeksForGeeks');
    }), 1000);
};
  
// Uncomment below line to call RunWithoutAbort
// function it will run in infinitely
// RunWithoutAbort();
  
// Call RunWithAbort function
// it will abort after 5 seconds
RunWithAbort();

使用以下命令运行index.js文件:

node index.js

输出:我们将在控制台屏幕上看到以下输出。

Start...
GeeksForGeeks:1 second
GeeksForGeeks:2 second
GeeksForGeeks:1 second
GeeksForGeeks:1 second
GeeksForGeeks:2 second
GeeksForGeeks:1 second
Abort trap:6

参考: https://nodejs.org/api/process.html#process_process_abort

相关用法


注:本文由纯净天空筛选整理自adityapande88大神的英文原创作品 Node.js process.abort() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。