码迷,mamicode.com
首页 >  
搜索关键字:receiver receivertracker    ( 826个结果
任务间使用管道进行输入输出
内容:通过输入/输出在线程间进行通信通常很有用。利用PipedWriter类(允许任务向管道写)和PipedReader类(允许不同任务从同一个管道中读取)。下面代码中Sender和Receiver代表了需要相互通信的两个任务。Sender把数据放进Writer,然后休眠一段时间。然而,Receiver没有sleep()和wait()。但当他调用read()时,如果没有更多的数据,管道将阻塞,而普...
分类:其他好文   时间:2015-04-23 23:30:45    阅读次数:164
[设计模式] 命令模式 Command
Command 模式通过将请求封装到一个对象(Command)中,并将请求的接受者存放到具体的 ConcreteCommand 类中(Receiver)中,从而实现调用操作的对象和操作的具体实现者之间的解耦。 在GOF的《设计模式:可复用面向对象软件的基础》一书中对命令模式是这样说的:将一个请求封....
分类:其他好文   时间:2015-04-23 19:45:16    阅读次数:154
How to Re-Enable NPAPI and Recover Citrix Receiver Chrome Plugin
To improve Chrome’s security and stability, Google announced late last year that NPAPI plugin support, a capability we’ve depended on for years, will be disabled by default in Chrome in April 2015. ...
分类:Windows程序   时间:2015-04-21 18:07:33    阅读次数:340
socket programming Max size of tcp/ip socket Buffer?
TCP data is buffered at both sender and receiver. The size of the receiver's socket receive buffer determines how much data can be in flight without a...
分类:其他好文   时间:2015-04-21 17:22:13    阅读次数:159
用广播监听安卓设备电量状态
发送通知这次邮件我们将会讨论怎么获取电量状态在安卓设备上,为了完成这个目标,我们将会使用到广播。What is BroadcastReceiver?A broadcast receiver is an Android component which allows you to register fo...
分类:移动开发   时间:2015-04-20 14:44:40    阅读次数:287
has leaked IntentReceiver ...that was originally registerd here.Are you missing a call to unregister
今天碰到了这个错误:has leaked IntentReceiver ...that was originally registerd here.Are you missing a call to unregisterReceiver 如图所示: 这个错误的中文意思是,已经溢出了IntentReceiver,你是忘记了调用注销广播的方法吗? 原因所在: 之...
分类:其他好文   时间:2015-04-17 11:33:16    阅读次数:102
Android实例-手机安全卫士(三十一)-根据指令完成相应操作二(锁屏和数据清除)
一、目标 1、实现远程锁屏和数据销毁操作; 2、初步制作“一键锁屏”应用和优化。二、代码实现 1、在Receiver包下新建一个类(取名LockScreenReceiver)继承DeviceAdminReceiver类(是BroadcastReceiver类的一个子类),并在清单配置文件配置r...
分类:移动开发   时间:2015-04-15 11:05:05    阅读次数:185
电赛菜鸟营培训(三)——STM32F103CB之串口通信
一、串口通信概念 1、缩写 USART:Universal Synchronous/Asynchronous Receiver/Transmitter 通用同步/异步接收和发送器 2、用处 (1)同步通信 双方必须先建立同步,即双方的时钟要调整到一个频率,收发双发不停地发送和接受连续的同步比特流。 ...
分类:其他好文   时间:2015-04-12 17:31:18    阅读次数:252
Android 开发框架
Android 开发框架包括基本的应用功能开发、数据存储、网络访问三大块。 1 应用方面 一般而言,一个标准的Android 程序包括Activity、Broadcast Intent Receiver、Service、Content Provider 四部分。 1).Activity Activi...
分类:移动开发   时间:2015-04-11 23:43:28    阅读次数:203
Android实例-手机安全卫士(二十九)-接受安全号码发送的指令
一、目标 1、利用广播接收者接受安全号码发送的短信; 2、根据短信内容完成相应指令操作(此处暂以Toast形式代替)。 二、代码实现 1、在receiver包下新建一个SMSReceiver类继承BroadcastReceiver,并在功能清单文件(AndroidManifest.xml)中...
分类:移动开发   时间:2015-04-09 19:03:33    阅读次数:255
826条   上一页 1 ... 65 66 67 68 69 ... 83 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!