1. 概念 1.1 同步和异步 同步和异步关注的是消息通信机制 (synchronous communication/ asynchronous communication)所谓同步,就是在发出一个调用时,在没有得到结果之前,该调用就不返回。但是一旦调用返回,就得到返回值了。换句话说,就是由调用者主 ...
分类:
其他好文 时间:
2019-05-01 13:24:18
阅读次数:
127
一、概述: AIDL是Android中IPC(Inter-Process Communication)方式中的一种,AIDL是Android Interface definition language的缩写。 其主要作用是用于进程间额通讯。 在Android系统中,每个进程都运行在一块独立的内存中, ...
分类:
移动开发 时间:
2019-04-26 21:08:42
阅读次数:
176
进程间通信(IPC,InterProcess Communication)是指在不同进程之间传播或交换信息。进程间通信的方式有如下几种: 1.管道通信 特点: 1. 管道只允许具有血缘关系的进程间通信,如父子进程间的通信。 2. 它是半双工的(即数据只能在一个方向上流动),具有固定的读端和写端。 3 ...
分类:
系统相关 时间:
2019-04-20 19:38:11
阅读次数:
179
Android版本28使用http请求报错not permitted by network security policy android模拟器调试登录的时候报错 CLEARTEXT communication to to 52.76.xx.xxx not permitted by network ...
分类:
移动开发 时间:
2019-04-11 16:32:46
阅读次数:
432
串口通信(Serial Communication): 是指外设和计算机之间通过数据信号线、底线等按位进行传输数据的一种通信方式。 串口是一种标准,它规定了接口的电气标准。分为RS-232C、RS-232、RS-422A、RS-485等。 常见的有RS-232和RS-485。RS-232是RS-23 ...
分类:
其他好文 时间:
2019-04-08 21:18:30
阅读次数:
181
在远程连接mysql的时候,连接不上,出现如下报错:Lost connection to MySQL server at 'waiting for initial communication packet', system error: 0截图如下: 原因分析:mysql开启了DNS的反向解析功能, ...
分类:
数据库 时间:
2019-03-30 14:58:43
阅读次数:
261
进程间通信方式 这部分参考文献2:详细内容打开链接看 程序员必须让拥有依赖关系的进程集协调,这样才能达到进程的共同目标。可以使用两种技术来达到协调。第一种技术在具有通信依赖关系的两个进程间传递信息。这种技术称做进程间通信(interprocess communication)。第二种技术是同步,当进 ...
分类:
系统相关 时间:
2019-03-22 17:12:39
阅读次数:
161
Coursework Assessment Pro-formaModule Code: CMT212Module Title: Visual Communication and Information DesignAssessment Title: Data Analysis and Visuali ...
分类:
其他好文 时间:
2019-03-17 20:06:07
阅读次数:
105
using System;using System.Collections.Generic;using System.IO;using System.Text; namespace Manjinba.Communication.Common.Utils{ /// <summary> /// 文件辅助 ...
分类:
其他好文 时间:
2019-03-16 09:48:01
阅读次数:
205
using Manjinba.Communication.Common.Caching;using Manjinba.Communication.Common.Logging;using Manjinba.Communication.Common.Utils;using Manjinba.Commu ...