本文整理汇总了TypeScript中vs/base/node/service.net.serve方法的典型用法代码示例。如果您正苦于以下问题:TypeScript net.serve方法的具体用法?TypeScript net.serve怎么用?TypeScript net.serve使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类vs/base/node/service.net
的用法示例。
在下文中一共展示了net.serve方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: setup
function setup(retry: boolean): TPromise<Server> {
return serve(hook).then(null, err => {
if (!retry || platform.isWindows || err.code !== 'EADDRINUSE') {
return TPromise.wrapError(err);
}
// should retry, not windows and eaddrinuse
return connect(hook).then(
client => {
// we could connect to a running instance. this is not good, abort
client.dispose();
return TPromise.wrapError(new Error('There is an instance already running.'));
},
err => {
// it happens on Linux and OS X that the pipe is left behind
// let's delete it, since we can't connect to it
// and the retry the whole thing
try {
fs.unlinkSync(hook);
} catch (e) {
return TPromise.wrapError(new Error('Error deleting the shared ipc hook.'));
}
return setup(false);
}
);
});
}
示例2: setup
function setup(retry: boolean): TPromise<Server> {
return serve(env.mainIPCHandle).then(null, err => {
if (err.code !== 'EADDRINUSE') {
return Promise.wrapError(err);
}
// there's a running instance, let's connect to it
return connect(env.mainIPCHandle).then(
client => {
env.log('Sending env to running instance...');
const service = client.getService<LaunchService>('LaunchService', LaunchService);
return service.start(env.cliArgs)
.then(() => client.dispose())
.then(() => Promise.wrapError('Sent env to running instance. Terminating...'));
},
err => {
if (!retry || platform.isWindows || err.code !== 'ECONNREFUSED') {
return Promise.wrapError(err);
}
// it happens on Linux and OS X that the pipe is left behind
// let's delete it, since we can't connect to it
// and the retry the whole thing
try {
fs.unlinkSync(env.mainIPCHandle);
} catch (e) {
env.log('Fatal error deleting obsolete instance handle', e);
return Promise.wrapError(e);
}
return setup(false);
}
);
});
}