本文整理汇总了TypeScript中grpc.credentials类的典型用法代码示例。如果您正苦于以下问题:TypeScript credentials类的具体用法?TypeScript credentials怎么用?TypeScript credentials使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了credentials类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: start
/**
* start launches the gRPC server and provides the service endpoints.
*/
start(): void {
if (!this.isBound) {
let credentials = grpc.ServerCredentials.createInsecure();
if (_.has(this.config, 'credentials.ssl')) {
credentials = grpc.credentials.createSsl(
this.config.credentials.ssl.certs);
}
this.server.bind(this.config.addr, credentials);
this.isBound = true;
}
this.server.start();
}
示例2: main
function main() {
let dispatch = new slack.Dispatch('slack:50051', grpc.credentials.createInsecure());
chatEventEmitter.on('INCOMING_MESSAGE', () => {
// console.log('SLACK SERVICE INCOMING_MESSAGE');
});
chatEventEmitter.on('NEW_CONVERSATION', (channelRequest) => {
var name = channelRequest.channel_name.toString()
let channelRequest2 = {
channel_name: name
};
// console.log('SENDING: ', channelRequest2);
dispatch.createChannel(channelRequest2, (err, slackChannel) => {
// console.log('GRPC_ERR: ', err);
// console.log('GRPC_RES: ', slackChannel);
});
});
}
示例3: Initialise
let ExportedMethods = {
async Initialise() {
// console.log('init is entered')
if (initInProgress) {
// console.log('init is already in progress, waiting until the other one completes')
await checkPortSet()
// console.log('init is complete, returning to normal process')
return
}
initInProgress = true
console.log('init is called')
let feapiport = await ipc.callMain('GetFrontendAPIPort')
feAPIConsumer = new proto.FrontendAPIClient(
'127.0.0.1:' + feapiport,
grpc.credentials.createInsecure()
)
console.log(feAPIConsumer)
let clapiserverport = await ipc.callMain('GetClientAPIServerPort')
await ExportedMethods.SetClientAPIServerPort(clapiserverport)
ipc.callMain('SetFrontendClientConnInitialised', true)
Initialised = true
initInProgress = false
},
GetAllBoards(callback: any) {
WaitUntilFrontendReady(async function() {
console.log('get all boards is making a call')
console.log('initstate: ', Initialised)
if (!Initialised) {
await ExportedMethods.Initialise()
}