Lines Matching refs:hasCall
263 ## call.hasCall
265 hasCall\(callback: AsyncCallback\<boolean\>\): void
282 call.hasCall((err: BusinessError, data: boolean) => {
284 console.error(`hasCall fail, err->${JSON.stringify(err)}`);
286 console.log(`hasCall success, data->${JSON.stringify(data)}`);
292 ## call.hasCall
294 hasCall\(\): Promise\<boolean\>
311 call.hasCall().then(() => {
312 console.log(`hasCall success`);
314 console.error(`hasCall fail, promise: err->${JSON.stringify(err)}`);
335 let hasCall: boolean = call.hasCallSync();
336 console.log(`hasCallSync success, has call is ` + hasCall);