Tag: 轮询

推送通知技术如何在Android上运行?

Google如何实施推送通知function? 通过在后台运行的服务进行轮询还是以不同的方式工作?

使用JavaScript进行服务器轮询

对于需要非常快速刷新数据的应用程序,使用JavaScript轮询服务器的最佳实践是什么? 我使用jQuery作为前端,Java Spring Framework作为后端。 刷新数据的例子可能是非常迅速(每1秒)得到更新的项目列表。

使用轮询函数与缓冲stream

我试图在C中使用轮询函数来实现客户机 – 服务器types的通信系统。stream程如下: 主程序分叉了一个subprocess subprocess调用exec函数来执行some_binary 父母和孩子交替发送消息,发送的每个消息都取决于收到的最后一条消息。 我试图用poll来实现这个function,但是由于subprocess缓冲它的输出而导致问题,导致我的poll调用超时。 这是我的代码: int main() { char *buffer = (char *) malloc(1000); int n; pid_t pid; /* pid of child process */ int rpipe[2]; /* pipe used to read from child process */ int wpipe[2]; /* pipe used to write to child process */ pipe(rpipe); pipe(wpipe); pid = fork(); if […]