问题标签 [callblocking]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
92 浏览

java - 在 Android 中阻止呼叫

我正在尝试开发一个基本代码来阻止 Android 中的调用。我的代码最初可以工作,但现在不行。

阻止所有调用的代码

ITelephony 是使用的接口

不能调用任何可用的函数

0 投票
0 回答
267 浏览

android - 在android中阻止来电时,它会在几分之一秒内短暂响起,如何克服这个问题

我有一个广播接收器,在阻止与本地数据库匹配传入号码的呼叫之前添加,我还在清单中添加了以下权限,并注册了这个广播接收器:

}

0 投票
1 回答
79 浏览

lua - 对同一个过度使用的函数的多个并发调用会导致 Lua 中的阻塞吗?

假设您有一个复杂的 Lua 应用程序,并且代码的不同部分会重复调用一些基本函数。这是一个无状态函数,几乎没有副作用,而且相当简单。

虚拟机如何处理这个问题?它是否将所有调用排队,并让它们一个接一个地运行,等待函数返回后再调用它?还是为了避免这种情况做了一些诡计?如果函数有一些很大的副作用,比如 print(),会怎样?

0 投票
1 回答
962 浏览

asynchronous - Exporting data from BigQuery to GCS - Partial transfer possible?

I am currently exporting my data (from a destination table in Bigquery) to a bucket in GCS. Doing this programmatically using the Bigquery API.

There is a constraint while exporting data from Bigquery to GCS - the data should not be greater than 1GB.

  • Since my data in the destination table is more than 1GB, I split the files into multiple parts.
  • The number of parts in which the file will be split will obviously depend on the size of the data that I have in my destination table.

Here is the code snippet for the function exportDataToGCS() where this is happening:

After this function is executed, in my GCS bucket, my files show up in the following manner:

File parts in GCS bucket after exporting from BigQuery

However, I am curious to know whether there can be any scenarios where the file was supposed to be split in 10 parts, but only 3 parts made it to the bucket because the above function failed.

That is, could there be a partial export ?

Could reasons like network drop or the process running the function being killed etc lead to this? Is this process a blocking call? Asynchronous?

Thanks in advance.

Update 1: Status parameter in query response

This is how I am checking for the DONE status.

0 投票
1 回答
93 浏览

javascript - 来自网络的 Android 呼叫阻止

我做了一项服务来监控我网站上所有安卓设备的来电和去电,但现在我想阻止来自同一网页的特定号码的来电。

无论如何,他们是通过 php 或 javascript 代码在 android 设备上进行呼叫阻止吗?

0 投票
1 回答
8588 浏览

android - 在android中阻止通话录音

我想在 android 中创建将阻止通话录音的应用程序。如果有人在我的手机中秘密安装通话录音应用程序,例如病毒或其他东西,那么这个应用程序将限制/阻止所有通话录音。

所以我的问题是

有什么办法可以屏蔽通话录音吗?

先感谢您。

0 投票
0 回答
1041 浏览

sockets - 如何停止 WSAPoll 的阻塞调用

我有一个案子要处理。有一个线程调用 WSAPoll() 从 TCP 连接接收数据。代码如下所示:

如果我将超时设置为负数,线程将无限期等待。但是,如果我从另一个线程调用函数 StopWait(),我想让这个函数直接返回一个值,例如 0。

那么我能做些什么来完成这项工作呢?通过函数 StopWait() 向另一个线程添加一个异步过程调用到这个阻塞线程?如果是,添加什么可以使它返回我想要的值?

谢谢!

0 投票
0 回答
96 浏览

android - 通过我的应用阻止号码

目前我正在开发一个呼叫阻止应用程序。完成应用程序后,我发现了一个错误:-假设我阻止了号码为“9806584545”的人 A 的联系,但是当人 A 给我打电话时,他的号码显示为 ISD 代码,因此该号码未被阻止。所以要阻止A的电话号码,我需要用ISD代码保存他的联系方式,然后阻止该号码,然后它才会起作用。请有人帮助我。下面是我的代码:-

BlockedContactAdapter.java :-

设备状态监听器:-

0 投票
1 回答
3980 浏览

java - 安卓拒绝来电

在我的 android 项目(使用目标 sdk 版本 23)中,我想拒绝来电。我知道对此有很多疑问,尤其是

1如何将 com.android.internal.telephony.ITelephony 导入 Android 应用程序

2如何在android中以编程方式拒绝呼叫

3当我已经检测到来电时如何拒绝任何来电

在第一个链接中,建议的解决方案是在接口上使用反射,ITelephony因为它是一个内部接口。但是此解决方案使用MODIFY_PHONE_STATE权限,该权限只能授予系统应用程序,因此无论如何它都不起作用。

从第二个和第三个链接,我了解到解决方案是ITelephony这里复制的,然后将其放入我的解决方案的新包中com.android.internal.telephony。问题是这个接口有很多关于查找类的问题android.telephony.RadioAccessFamily错误找不到符号类RadioAccessFamily),该类在android的平台框架基础中

有解决这个问题的想法吗?

0 投票
3 回答
2190 浏览

ios - iOS 10 中的呼叫阻止功能

我正在尝试集成 CallDirectory Extension 以阻止某些来电。但应用程序甚至无法识别为阻止提供的数字。有没有人成功做到这一点?你可以看到我使用的格式..

而且,我将此用于开发。http://iphoneramble.blogspot.in/2016/07/ios-10-callkit-directory-extension.html

测试设备和 iOS 版本 - iphone 5s ,iOS 10.1