js-apis-rpc.md 265.1 KB
Newer Older
1
# @ohos.rpc (RPC通信)
Z
zengyawen 已提交
2

3
本模块提供进程间通信能力,包括设备内的进程间通信(IPC)和设备间的进程间通信(RPC),前者基于Binder驱动,后者基于软总线驱动。
Z
zengyawen 已提交
4

5 6
> **说明:**
>
7
> - 本模块首批接口从API version 7开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
8
>
9
> - 本模块从API version 9开始支持异常返回功能。
W
wanghaoxu 已提交
10 11 12 13 14 15 16

## 导入模块

```
import rpc from '@ohos.rpc';
```

C
crazy_hu 已提交
17 18 19 20 21 22 23 24
## ErrorCode<sup>9+</sup>

从API version 9起,IPC支持异常返回功能。错误码对应数值及含义如下。

**系统能力**:SystemCapability.Communication.IPC.Core

  | 名称                                  | 值      | 说明                                          |
  | ------------------------------------- | ------- | --------------------------------------------- |
C
crazy_hu 已提交
25
  | CHECK_PARAM_ERROR                     | 401     | 检查参数失败。                                |
C
crazy_hu 已提交
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
  | OS_MMAP_ERROR                         | 1900001 | 执行系统调用mmap失败。                        |
  | OS_IOCTL_ERROR                        | 1900002 | 在共享内存文件描述符上执行系统调用ioctl失败。 |
  | WRITE_TO_ASHMEM_ERROR                 | 1900003 | 向共享内存写数据失败。                        |
  | READ_FROM_ASHMEM_ERROR                | 1900004 | 从共享内存读数据失败。                        |
  | ONLY_PROXY_OBJECT_PERMITTED_ERROR     | 1900005 | 只有proxy对象允许该操作。                     |
  | ONLY_REMOTE_OBJECT_PERMITTED_ERROR    | 1900006 | 只有remote对象允许该操作。                    |
  | COMMUNICATION_ERROR                   | 1900007 | 和远端对象进行进程间通信失败。                |
  | PROXY_OR_REMOTE_OBJECT_INVALID_ERROR  | 1900008 | 非法的代理对象或者远端对象。                  |
  | WRITE_DATA_TO_MESSAGE_SEQUENCE_ERROR  | 1900009 | 向MessageSequence写数据失败。                 |
  | READ_DATA_FROM_MESSAGE_SEQUENCE_ERROR | 1900010 | 读取MessageSequence数据失败。                 |
  | PARCEL_MEMORY_ALLOC_ERROR             | 1900011 | 序列化过程中内存分配失败。                    |
  | CALL_JS_METHOD_ERROR                  | 1900012 | 执行JS回调方法失败。                          |
  | OS_DUP_ERROR                          | 1900013 | 执行系统调用dup失败。                         |


W
wanghaoxu 已提交
41
## MessageSequence<sup>9+</sup>
Z
zengyawen 已提交
42

43
  在RPC或IPC过程中,发送方可以使用MessageSequence提供的写方法,将待发送的数据以特定格式写入该对象。接收方可以使用MessageSequence提供的读方法从该对象中读取特定格式的数据。数据格式包括:基础类型及数组、IPC对象、接口描述符和自定义序列化对象。
Z
zengyawen 已提交
44 45 46

### create

47 48
  static create(): MessageSequence

W
wanghaoxu 已提交
49
  静态方法,创建MessageSequence对象。
Z
zengyawen 已提交
50

Y
yangguangzhao 已提交
51
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
52

Y
yangguangzhao 已提交
53
**返回值:**
W
wanghaoxu 已提交
54

W
wanghaoxu 已提交
55 56 57
  | 类型            | 说明                            |
  | --------------- | ------------------------------- |
  | MessageSequence | 返回创建的MessageSequence对象。 |
Z
zengyawen 已提交
58

Y
yangguangzhao 已提交
59
**示例:**
Y
yangguangzhao 已提交
60

Y
Yippo 已提交
61
  ```ts
W
wanghaoxu 已提交
62
  let data = rpc.MessageSequence.create();
Z
zengyawen 已提交
63 64 65 66 67 68 69
  console.log("RpcClient: data is " + data);
  ```

### reclaim

reclaim(): void

W
wanghaoxu 已提交
70
释放不再使用的MessageSequence对象。
Z
zengyawen 已提交
71

Y
yangguangzhao 已提交
72
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
73

Y
yangguangzhao 已提交
74
**示例:**
Y
yangguangzhao 已提交
75

Y
Yippo 已提交
76
  ```ts
W
wanghaoxu 已提交
77
  let reply = rpc.MessageSequence.create();
Z
zengyawen 已提交
78 79 80 81 82
  reply.reclaim();
  ```

### writeRemoteObject

W
wanghaoxu 已提交
83
writeRemoteObject(object: [IRemoteObject](#iremoteobject)): void
Y
yangguangzhao 已提交
84

W
wanghaoxu 已提交
85
序列化远程对象并将其写入MessageSequence对象。
W
wanghaoxu 已提交
86

Y
yangguangzhao 已提交
87
**系统能力**:SystemCapability.Communication.IPC.Core
W
wanghaoxu 已提交
88

W
wanghaoxu 已提交
89
**参数:**
W
wanghaoxu 已提交
90

W
wanghaoxu 已提交
91 92 93
  | 参数名 | 类型                            | 必填 | 说明                                      |
  | ------ | ------------------------------- | ---- | ----------------------------------------- |
  | object | [IRemoteObject](#iremoteobject) | 是   | 要序列化并写入MessageSequence的远程对象。 |
Y
yangguangzhao 已提交
94

W
wanghaoxu 已提交
95 96
**错误码:**

C
crazy_hu 已提交
97
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
Z
zengyawen 已提交
98

W
wanghaoxu 已提交
99
  | 错误码ID | 错误信息 |
W
wanghaoxu 已提交
100 101 102
  | -------- | ------- |
  | 1900008 | proxy or remote object is invalid |
  | 1900009 | write data to message sequence failed |
W
wanghaoxu 已提交
103

Y
yangguangzhao 已提交
104
**示例:**
Y
yangguangzhao 已提交
105

Y
Yippo 已提交
106
  ```ts
Z
zengyawen 已提交
107 108 109 110 111
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
  }
W
wanghaoxu 已提交
112
  let data = rpc.MessageSequence.create();
Z
zengyawen 已提交
113
  let testRemoteObject = new TestRemoteObject("testObject");
W
wanghaoxu 已提交
114 115 116 117 118 119
  try {
      data.writeRemoteObject(testRemoteObject);
  } catch(error) {
      console.info("Rpc write remote object fail, errorCode " + error.code);
      console.info("Rpc write remote object fail, errorMessage " + error.message);
  }
Z
zengyawen 已提交
120 121 122 123 124 125
  ```

### readRemoteObject

readRemoteObject(): IRemoteObject

W
wanghaoxu 已提交
126
从MessageSequence读取远程对象。此方法用于反序列化MessageSequence对象以生成IRemoteObject。远程对象按写入MessageSequence的顺序读取。
W
wanghaoxu 已提交
127

Y
yangguangzhao 已提交
128
**系统能力**:SystemCapability.Communication.IPC.Core
W
wanghaoxu 已提交
129

Y
yangguangzhao 已提交
130
**返回值:**
W
wanghaoxu 已提交
131

W
wanghaoxu 已提交
132 133
  | 类型                            | 说明               |
  | ------------------------------- | ------------------ |
Y
yangguangzhao 已提交
134
  | [IRemoteObject](#iremoteobject) | 读取到的远程对象。 |
Z
zengyawen 已提交
135

W
wanghaoxu 已提交
136 137
**错误码:**

C
crazy_hu 已提交
138
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
139

W
wanghaoxu 已提交
140 141 142 143
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900008 | proxy or remote object is invalid |
  | 1900010 | read data from message sequence failed |
W
wanghaoxu 已提交
144

Y
yangguangzhao 已提交
145
**示例:**
Y
yangguangzhao 已提交
146

Y
Yippo 已提交
147
  ```ts
Z
zengyawen 已提交
148 149 150 151 152
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
  }
W
wanghaoxu 已提交
153
  let data = rpc.MessageSequence.create();
Z
zengyawen 已提交
154
  let testRemoteObject = new TestRemoteObject("testObject");
W
wanghaoxu 已提交
155 156 157 158 159 160 161
  try {
      data.writeRemoteObject(testRemoteObject);
      let proxy = data.readRemoteObject();
  } catch(error) {
      console.info("Rpc write remote object fail, errorCode " + error.code);
      console.info("Rpc write remote object fail, errorMessage " + error.message);
  }
Z
zengyawen 已提交
162 163 164 165
  ```

### writeInterfaceToken

W
wanghaoxu 已提交
166
writeInterfaceToken(token: string): void
Z
zengyawen 已提交
167

W
wanghaoxu 已提交
168
将接口描述符写入MessageSequence对象,远端对象可使用该信息校验本次通信。
W
wanghaoxu 已提交
169

Y
yangguangzhao 已提交
170
**系统能力**:SystemCapability.Communication.IPC.Core
W
wanghaoxu 已提交
171

W
wanghaoxu 已提交
172
**参数:**
W
wanghaoxu 已提交
173

W
wanghaoxu 已提交
174 175 176
  | 参数名 | 类型   | 必填 | 说明               |
  | ------ | ------ | ---- | ------------------ |
  | token  | string | 是   | 字符串类型描述符。 |
Z
zengyawen 已提交
177

W
wanghaoxu 已提交
178 179
**错误码:**

C
crazy_hu 已提交
180
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
Z
zengyawen 已提交
181

W
wanghaoxu 已提交
182 183 184
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900009 | write data to message sequence failed |
W
wanghaoxu 已提交
185

Y
yangguangzhao 已提交
186
**示例:**
Y
yangguangzhao 已提交
187

Y
Yippo 已提交
188
  ```ts
W
wanghaoxu 已提交
189 190 191 192 193 194 195
  let data = rpc.MessageSequence.create();
  try {
      data.writeInterfaceToken("aaa");
  } catch(error) {
      console.info("rpc write interface fail, errorCode " + error.code);
      console.info("rpc write interface fail, errorMessage " + error.message);
  }
Z
zengyawen 已提交
196 197 198 199 200 201
  ```

### readInterfaceToken

readInterfaceToken(): string

202
从MessageSequence对象中读取接口描述符,接口描述符按写入MessageSequence的顺序读取,本地对象可使用该信息检验本次通信。
W
wanghaoxu 已提交
203

Y
yangguangzhao 已提交
204
**系统能力**:SystemCapability.Communication.IPC.Core
W
wanghaoxu 已提交
205

Y
yangguangzhao 已提交
206
**返回值:**
W
wanghaoxu 已提交
207

W
wanghaoxu 已提交
208 209
  | 类型   | 说明                     |
  | ------ | ------------------------ |
Y
yangguangzhao 已提交
210
  | string | 返回读取到的接口描述符。 |
Z
zengyawen 已提交
211

W
wanghaoxu 已提交
212 213
**错误码:**

C
crazy_hu 已提交
214
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
215

W
wanghaoxu 已提交
216 217 218
  | 错误码ID | 错误信息 |
  | ------- | ----- |
  | 1900010 | read data from message sequence failed |
W
wanghaoxu 已提交
219

Y
yangguangzhao 已提交
220
**示例:**
Y
yangguangzhao 已提交
221

Y
Yippo 已提交
222
```ts
223 224 225 226 227 228 229 230 231 232 233 234
class Stub extends rpc.RemoteObject {
    onRemoteRequest(code, data, reply, option) {
        try {
            let interfaceToken = data.readInterfaceToken();
            console.log("RpcServer: interfaceToken is " + interfaceToken);
        } catch(error) {
            console.info("RpcServer: read interfaceToken failed, errorCode " + error.code);
            console.info("RpcServer: read interfaceToken failed, errorMessage " + error.message);
        }
        return true;
    }
}
235
```
Z
zengyawen 已提交
236 237 238 239 240

### getSize

getSize(): number

241
获取当前创建的MessageSequence对象的数据大小。
W
wanghaoxu 已提交
242

Y
yangguangzhao 已提交
243
**系统能力**:SystemCapability.Communication.IPC.Core
W
wanghaoxu 已提交
244

Y
yangguangzhao 已提交
245
**返回值:**
W
wanghaoxu 已提交
246

W
wanghaoxu 已提交
247 248
  | 类型   | 说明                                            |
  | ------ | ----------------------------------------------- |
249
  | number | 获取的MessageSequence实例的数据大小。以字节为单位。 |
W
wanghaoxu 已提交
250

Y
yangguangzhao 已提交
251
**示例:**
Y
yangguangzhao 已提交
252

Y
Yippo 已提交
253
  ```ts
W
wanghaoxu 已提交
254
  let data = rpc.MessageSequence.create();
Z
zengyawen 已提交
255 256 257 258 259 260 261 262
  let size = data.getSize();
  console.log("RpcClient: size is " + size);
  ```

### getCapacity

getCapacity(): number

263
获取当前MessageSequence对象的容量大小。
W
wanghaoxu 已提交
264

Y
yangguangzhao 已提交
265
**系统能力**:SystemCapability.Communication.IPC.Core
W
wanghaoxu 已提交
266

Y
yangguangzhao 已提交
267
**返回值:**
W
wanghaoxu 已提交
268

W
wanghaoxu 已提交
269 270
  | 类型   | 说明 |
  | ------ | ----- |
271
  | number | 获取的MessageSequence实例的容量大小。以字节为单位。 |
W
wanghaoxu 已提交
272

Y
yangguangzhao 已提交
273
**示例:**
Y
yangguangzhao 已提交
274

Y
Yippo 已提交
275
  ```ts
W
wanghaoxu 已提交
276
  let data = rpc.MessageSequence.create();
Z
zengyawen 已提交
277 278 279 280 281 282
  let result = data.getCapacity();
  console.log("RpcClient: capacity is " + result);
  ```

### setSize

W
wanghaoxu 已提交
283
setSize(size: number): void
Z
zengyawen 已提交
284

285
设置MessageSequence对象中包含的数据大小。
W
wanghaoxu 已提交
286

Y
yangguangzhao 已提交
287
**系统能力**:SystemCapability.Communication.IPC.Core
W
wanghaoxu 已提交
288

W
wanghaoxu 已提交
289
**参数:**
W
wanghaoxu 已提交
290

W
wanghaoxu 已提交
291 292
  | 参数名 | 类型   | 必填 | 说明 |
  | ------ | ------ | ---- | ------ |
W
wanghaoxu 已提交
293
  | size   | number | 是   | MessageSequence实例的数据大小。以字节为单位。 |
Z
zengyawen 已提交
294

Y
yangguangzhao 已提交
295
**示例:**
Y
yangguangzhao 已提交
296

Y
Yippo 已提交
297
  ```ts
W
wanghaoxu 已提交
298 299 300
  let data = rpc.MessageSequence.create();
  try {
      data.setSize(16);
C
crazy_hu 已提交
301
      console.log("RpcClient: setSize is " + data.getSize());
W
wanghaoxu 已提交
302 303 304 305
  } catch(error) {
      console.info("rpc set size of MessageSequence fail, errorCode " + error.code);
      console.info("rpc set size of MessageSequence fail, errorMessage " + error.message);
  }
Z
zengyawen 已提交
306 307 308 309
  ```

### setCapacity

W
wanghaoxu 已提交
310
setCapacity(size: number): void
Z
zengyawen 已提交
311

312
设置MessageSequence对象的存储容量。
Z
zengyawen 已提交
313

Y
yangguangzhao 已提交
314
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
315

W
wanghaoxu 已提交
316
**参数:**
W
wangqinxiao 已提交
317

W
wanghaoxu 已提交
318 319 320
  | 参数名 | 类型   | 必填 | 说明                                          |
  | ------ | ------ | ---- | --------------------------------------------- |
  | size   | number | 是   | MessageSequence实例的存储容量。以字节为单位。 |
Z
zengyawen 已提交
321

W
wanghaoxu 已提交
322 323
**错误码:**

C
crazy_hu 已提交
324
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wangqinxiao 已提交
325

W
wanghaoxu 已提交
326 327 328
  | 错误码ID | 错误信息 |
  | -------- | ------ |
  | 1900011 | parcel memory alloc failed |
Z
zengyawen 已提交
329

Y
yangguangzhao 已提交
330
**示例:**
Y
yangguangzhao 已提交
331

Y
Yippo 已提交
332
  ```ts
W
wanghaoxu 已提交
333 334 335
  let data = rpc.MessageSequence.create();
  try {
      data.setCapacity(100);
C
crazy_hu 已提交
336
      console.log("RpcClient: setCapacity is " + data.getCapacity());
W
wanghaoxu 已提交
337 338 339 340
  } catch(error) {
      console.info("rpc memory alloc fail, errorCode " + error.code);
      console.info("rpc memory alloc fail, errorMessage " + error.message);
  }
Z
zengyawen 已提交
341 342 343 344 345 346
  ```

### getWritableBytes

getWritableBytes(): number

347
获取MessageSequence的可写字节空间大小。
Z
zengyawen 已提交
348

Y
yangguangzhao 已提交
349
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
350

Y
yangguangzhao 已提交
351
**返回值:**
W
wangqinxiao 已提交
352

W
wanghaoxu 已提交
353 354
  | 类型 | 说明 |
  | ------ | ------ |
355
  | number | 获取到的MessageSequence实例的可写字节空间。以字节为单位。 |
Z
zengyawen 已提交
356

Y
yangguangzhao 已提交
357
**示例:**
Y
yangguangzhao 已提交
358

Y
Yippo 已提交
359
```ts
360 361 362 363 364 365 366
class Stub extends rpc.RemoteObject {
    onRemoteRequest(code, data, reply, option) {
        let getWritableBytes = data.getWritableBytes();
        console.log("RpcServer: getWritableBytes is " + getWritableBytes);
        return true;
    }
}
367
```
Z
zengyawen 已提交
368 369 370 371 372

### getReadableBytes

getReadableBytes(): number

W
wanghaoxu 已提交
373
获取MessageSequence的可读字节空间。
Z
zengyawen 已提交
374

Y
yangguangzhao 已提交
375
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
376

Y
yangguangzhao 已提交
377
**返回值:**
W
wangqinxiao 已提交
378

W
wanghaoxu 已提交
379 380
  | 类型 | 说明 |
  | ------ | ------- |
381
  | number | 获取到的MessageSequence实例的可读字节空间。以字节为单位。 |
Z
zengyawen 已提交
382

Y
yangguangzhao 已提交
383
**示例:**
Y
yangguangzhao 已提交
384

Y
Yippo 已提交
385
  ```ts
386 387 388 389 390 391 392
class Stub extends rpc.RemoteObject {
    onRemoteRequest(code, data, reply, option) {
        let result = data.getReadableBytes();
        console.log("RpcServer: getReadableBytes is " + result);
        return true;
    }
}
Z
zengyawen 已提交
393 394 395 396 397 398
  ```

### getReadPosition

getReadPosition(): number

W
wanghaoxu 已提交
399
获取MessageSequence的读位置。
Z
zengyawen 已提交
400

Y
yangguangzhao 已提交
401
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
402

Y
yangguangzhao 已提交
403
**返回值:**
W
wanghaoxu 已提交
404

W
wanghaoxu 已提交
405 406
  | 类型 | 说明 |
  | ------ | ------ |
W
wanghaoxu 已提交
407
  | number | 返回MessageSequence实例中的当前读取位置。 |
Z
zengyawen 已提交
408

Y
yangguangzhao 已提交
409
**示例:**
Y
yangguangzhao 已提交
410

Y
Yippo 已提交
411
  ```ts
W
wanghaoxu 已提交
412
  let data = rpc.MessageSequence.create();
Z
zengyawen 已提交
413 414 415 416 417 418 419 420
  let readPos = data.getReadPosition();
  console.log("RpcClient: readPos is " + readPos);
  ```

### getWritePosition

getWritePosition(): number

W
wanghaoxu 已提交
421
获取MessageSequence的写位置。
Z
zengyawen 已提交
422

Y
yangguangzhao 已提交
423
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
424

Y
yangguangzhao 已提交
425
**返回值:**
W
wangqinxiao 已提交
426

W
wanghaoxu 已提交
427 428
  | 类型 | 说明 |
  | ------ | ----- |
W
wanghaoxu 已提交
429
  | number | 返回MessageSequence实例中的当前写入位置。 |
Z
zengyawen 已提交
430

Y
yangguangzhao 已提交
431
**示例:**
Y
yangguangzhao 已提交
432

Y
Yippo 已提交
433
  ```ts
W
wanghaoxu 已提交
434
  let data = rpc.MessageSequence.create();
Z
zengyawen 已提交
435 436 437 438 439 440 441
  data.writeInt(10);
  let bwPos = data.getWritePosition();
  console.log("RpcClient: bwPos is " + bwPos);
  ```

### rewindRead

W
wanghaoxu 已提交
442
rewindRead(pos: number): void
Z
zengyawen 已提交
443 444 445

重新偏移读取位置到指定的位置。

Y
yangguangzhao 已提交
446
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
447

W
wanghaoxu 已提交
448
**参数:**
W
wangqinxiao 已提交
449

W
wanghaoxu 已提交
450 451
  | 参数名 | 类型 | 必填 | 说明 |
  | ------ | ------ | ---- | ------- |
W
wanghaoxu 已提交
452
  | pos    | number | 是   | 开始读取数据的目标位置。 |
Z
zengyawen 已提交
453

Y
yangguangzhao 已提交
454
**示例:**
Y
yangguangzhao 已提交
455

Y
Yippo 已提交
456
  ```ts
W
wanghaoxu 已提交
457
  let data = rpc.MessageSequence.create();
Z
zengyawen 已提交
458
  data.writeInt(12);
W
wanghaoxu 已提交
459
  data.writeString("sequence");
Z
zengyawen 已提交
460 461
  let number = data.readInt();
  console.log("RpcClient: number is " + number);
W
wanghaoxu 已提交
462 463 464 465 466 467
  try {
      data.rewindRead(0);
  } catch(error) {
      console.info("rpc rewind read data fail, errorCode " + error.code);
      console.info("rpc rewind read data fail, errorMessage " + error.message);
  }
Z
zengyawen 已提交
468 469 470 471 472 473
  let number2 = data.readInt();
  console.log("RpcClient: rewindRead is " + number2);
  ```

### rewindWrite

W
wanghaoxu 已提交
474
rewindWrite(pos: number): void
Z
zengyawen 已提交
475 476 477

重新偏移写位置到指定的位置。

Y
yangguangzhao 已提交
478
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
479

W
wanghaoxu 已提交
480
**参数:**
W
wangqinxiao 已提交
481

W
wanghaoxu 已提交
482 483
  | 参数名 | 类型 | 必填 | 说明 |
  | ------ | ------ | ---- | ----- |
W
wanghaoxu 已提交
484
  | pos    | number | 是   | 开始写入数据的目标位置。 |
Z
zengyawen 已提交
485

Y
yangguangzhao 已提交
486
**示例:**
Y
yangguangzhao 已提交
487

Y
Yippo 已提交
488
  ```ts
W
wanghaoxu 已提交
489
  let data = rpc.MessageSequence.create();
Z
zengyawen 已提交
490
  data.writeInt(4);
W
wanghaoxu 已提交
491 492 493 494 495 496
  try {
      data.rewindWrite(0);
  } catch(error) {
      console.info("rpc rewind read data fail, errorCode " + error.code);
      console.info("rpc rewind read data fail, errorMessage " + error.message);
  }
Z
zengyawen 已提交
497 498 499 500 501 502 503
  data.writeInt(5);
  let number = data.readInt();
  console.log("RpcClient: rewindWrite is: " + number);
  ```

### writeByte

W
wanghaoxu 已提交
504
writeByte(val: number): void
Z
zengyawen 已提交
505

W
wanghaoxu 已提交
506
将字节值写入MessageSequence实例。
Z
zengyawen 已提交
507

Y
yangguangzhao 已提交
508
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
509

W
wanghaoxu 已提交
510
**参数:**
W
wangqinxiao 已提交
511

W
wanghaoxu 已提交
512 513 514
  | 参数名 | 类型   | 必填 | 说明 |
  | ----- | ------ | ---- | ----- |
  | val | number | 是 | 要写入的字节值。 |
Z
zengyawen 已提交
515

W
wanghaoxu 已提交
516 517
**错误码:**

C
crazy_hu 已提交
518
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wangqinxiao 已提交
519

W
wanghaoxu 已提交
520 521 522
  | 错误码ID | 错误信息 |
  | -------- | ------- |
  | 1900009 | write data to message sequence failed |
Z
zengyawen 已提交
523

Y
yangguangzhao 已提交
524
**示例:**
Y
yangguangzhao 已提交
525

Y
Yippo 已提交
526
  ```ts
W
wanghaoxu 已提交
527 528 529 530 531 532 533
  let data = rpc.MessageSequence.create();
  try {
      data.writeByte(2);
  } catch(error) {
    console.info("rpc write byte fail, errorCode " + error.code);
    console.info("rpc write byte fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
534 535 536 537 538 539
  ```

### readByte

readByte(): number

W
wanghaoxu 已提交
540
从MessageSequence实例读取字节值。
Z
zengyawen 已提交
541

Y
yangguangzhao 已提交
542
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
543

Y
yangguangzhao 已提交
544
**返回值:**
W
wangqinxiao 已提交
545

W
wanghaoxu 已提交
546 547
  | 类型   | 说明 |
  | ------ | ----- |
Y
yangguangzhao 已提交
548
  | number | 返回字节值。 |
Z
zengyawen 已提交
549

W
wanghaoxu 已提交
550 551
**错误码:**

C
crazy_hu 已提交
552
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
553

W
wanghaoxu 已提交
554 555 556
  | 错误码ID | 错误信息 |
  | ------- | --------  |
  | 1900010 | read data from message sequence failed |
W
wanghaoxu 已提交
557

Y
yangguangzhao 已提交
558
**示例:**
Y
yangguangzhao 已提交
559

Y
Yippo 已提交
560
  ```ts
W
wanghaoxu 已提交
561 562 563 564 565 566 567 568 569 570 571 572 573 574
  let data = rpc.MessageSequence.create();
  try {
      data.writeByte(2);
  } catch(error) {
    console.info("rpc write byte fail, errorCode " + error.code);
    console.info("rpc write byte fail, errorMessage" + error.message);
  }
  try {
      let ret = data.readByte();
      console.log("RpcClient: readByte is: " + ret);
  } catch(error) {
    console.info("rpc write byte fail, errorCode " + error.code);
    console.info("rpc write byte fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
575 576 577 578
  ```

### writeShort

W
wanghaoxu 已提交
579
writeShort(val: number): void
Z
zengyawen 已提交
580

W
wanghaoxu 已提交
581
将短整数值写入MessageSequence实例。
Z
zengyawen 已提交
582

Y
yangguangzhao 已提交
583
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
584

W
wanghaoxu 已提交
585
**参数:**
W
wangqinxiao 已提交
586

W
wanghaoxu 已提交
587 588 589
  | 参数名 | 类型   | 必填 | 说明 |
  | ------ | ------ | --- | --- |
  | val | number | 是 | 要写入的短整数值。 |
Z
zengyawen 已提交
590

W
wanghaoxu 已提交
591 592
**错误码:**

C
crazy_hu 已提交
593
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wangqinxiao 已提交
594

W
wanghaoxu 已提交
595 596 597
  | 错误码ID | 错误信息 |
  | ------- | ------ |
  | 1900009 | write data to message sequence failed |
Z
zengyawen 已提交
598

Y
yangguangzhao 已提交
599
**示例:**
Y
yangguangzhao 已提交
600

Y
Yippo 已提交
601
  ```ts
W
wanghaoxu 已提交
602 603 604 605 606 607 608
  let data = rpc.MessageSequence.create();
  try {
      data.writeShort(8);
  } catch(error) {
      console.info("rpc write short fail, errorCode " + error.code);
      console.info("rpc write short fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
609 610 611 612 613 614
  ```

### readShort

readShort(): number

W
wanghaoxu 已提交
615
从MessageSequence实例读取短整数值。
Z
zengyawen 已提交
616

Y
yangguangzhao 已提交
617
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
618

Y
yangguangzhao 已提交
619
**返回值:**
W
wangqinxiao 已提交
620

W
wanghaoxu 已提交
621 622
  | 类型   | 说明           |
  | ------ | -------------- |
Y
yangguangzhao 已提交
623
  | number | 返回短整数值。 |
Z
zengyawen 已提交
624

W
wanghaoxu 已提交
625 626
**错误码:**

C
crazy_hu 已提交
627
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
628

W
wanghaoxu 已提交
629 630 631
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900010 | read data from message sequence failed |
W
wanghaoxu 已提交
632

Y
yangguangzhao 已提交
633
**示例:**
Y
yangguangzhao 已提交
634

Y
Yippo 已提交
635
  ```ts
W
wanghaoxu 已提交
636 637 638 639 640 641 642 643 644 645 646 647 648 649
  let data = rpc.MessageSequence.create();
  try {
      data.writeShort(8);
  } catch(error) {
      console.info("rpc write short fail, errorCode " + error.code);
      console.info("rpc write short fail, errorMessage" + error.message);
  }
  try {
      let ret = data.readShort(8);
  } catch(error) {
      console.info("rpc read short fail, errorCode " + error.code);
      console.info("rpc read short fail, errorMessage" + error.message);
  }
  console.log("RpcClient: readByte is: " + ret);
Z
zengyawen 已提交
650 651 652 653
  ```

### writeInt

W
wanghaoxu 已提交
654
writeInt(val: number): void
Z
zengyawen 已提交
655

W
wanghaoxu 已提交
656
将整数值写入MessageSequence实例。
Z
zengyawen 已提交
657

Y
yangguangzhao 已提交
658
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
659

W
wanghaoxu 已提交
660
**参数:**
W
wangqinxiao 已提交
661

W
wanghaoxu 已提交
662 663 664
  | 参数名 | 类型   | 必填 | 说明             |
  | ------ | ------ | ---- | ---------------- |
  | val    | number | 是   | 要写入的整数值。 |
Z
zengyawen 已提交
665

W
wanghaoxu 已提交
666 667
**错误码:**

C
crazy_hu 已提交
668
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wangqinxiao 已提交
669

W
wanghaoxu 已提交
670 671 672
  | 错误码ID | 错误信息 |
  | -------- | ------- |
  | 1900009 | write data to message sequence failed |
Z
zengyawen 已提交
673

Y
yangguangzhao 已提交
674
**示例:**
Y
yangguangzhao 已提交
675

Y
Yippo 已提交
676
  ```ts
W
wanghaoxu 已提交
677 678 679 680 681 682 683
  let data = rpc.MessageSequence.create();
  try {
      data.writeInt(10);
  } catch(error) {
      console.info("rpc write int fail, errorCode " + error.code);
      console.info("rpc write int fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
684 685 686 687 688 689
  ```

### readInt

readInt(): number

W
wanghaoxu 已提交
690
从MessageSequence实例读取整数值。
Z
zengyawen 已提交
691

Y
yangguangzhao 已提交
692
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
693

Y
yangguangzhao 已提交
694
**返回值:**
W
wangqinxiao 已提交
695

W
wanghaoxu 已提交
696 697
  | 类型   | 说明         |
  | ------ | ------------ |
Y
yangguangzhao 已提交
698
  | number | 返回整数值。 |
Z
zengyawen 已提交
699

W
wanghaoxu 已提交
700 701
**错误码:**

C
crazy_hu 已提交
702
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
703

W
wanghaoxu 已提交
704 705 706
  | 错误码ID | 错误信息 |
  | ------- | ------- |
  | 1900010 | read data from message sequence failed |
W
wanghaoxu 已提交
707

Y
yangguangzhao 已提交
708
**示例:**
Y
yangguangzhao 已提交
709

Y
Yippo 已提交
710
  ```ts
W
wanghaoxu 已提交
711 712 713 714 715 716 717 718 719
  let data = rpc.MessageSequence.create();
  try {
      data.writeInt(10);
  } catch(error) {
      console.info("rpc write int fail, errorCode " + error.code);
      console.info("rpc write int fail, errorMessage" + error.message);
  }
  try {
      let ret = data.readInt();
C
crazy_hu 已提交
720
      console.log("RpcClient: readInt is " + ret);
W
wanghaoxu 已提交
721 722 723 724
  } catch(error) {
      console.info("rpc read int fail, errorCode " + error.code);
      console.info("rpc read int fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
725 726 727 728
  ```

### writeLong

W
wanghaoxu 已提交
729
writeLong(val: number): void
Z
zengyawen 已提交
730

W
wanghaoxu 已提交
731
将长整数值写入MessageSequence实例。
Z
zengyawen 已提交
732

Y
yangguangzhao 已提交
733
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
734

W
wanghaoxu 已提交
735
**参数:**
W
wangqinxiao 已提交
736

W
wanghaoxu 已提交
737 738 739
  | 参数名 | 类型   | 必填 | 说明             |
  | ------ | ------ | ---- | ---------------- |
  | val    | number | 是   | 要写入的长整数值 |
Z
zengyawen 已提交
740

W
wanghaoxu 已提交
741 742
**错误码:**

C
crazy_hu 已提交
743
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wangqinxiao 已提交
744

W
wanghaoxu 已提交
745 746 747
  | 错误码ID | 错误信息 |
  | ------- | ------- |
  | 1900009 | write data to message sequence failed |
Z
zengyawen 已提交
748

Y
yangguangzhao 已提交
749
**示例:**
Y
yangguangzhao 已提交
750

Y
Yippo 已提交
751
  ```ts
W
wanghaoxu 已提交
752 753 754 755 756 757 758
  let data = rpc.MessageSequence.create();
  try {
      data.writeLong(10000);
  } catch(error) {
      console.info("rpc write long fail, errorCode " + error.code);
      console.info("rpc write long fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
759 760 761 762 763 764
  ```

### readLong

readLong(): number

W
wanghaoxu 已提交
765
从MessageSequence实例中读取长整数值。
Z
zengyawen 已提交
766

Y
yangguangzhao 已提交
767
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
768

Y
yangguangzhao 已提交
769
**返回值:**
W
wangqinxiao 已提交
770

W
wanghaoxu 已提交
771 772
  | 类型   | 说明           |
  | ------ | -------------- |
Y
yangguangzhao 已提交
773
  | number | 返回长整数值。 |
Z
zengyawen 已提交
774

W
wanghaoxu 已提交
775 776
**错误码:**

C
crazy_hu 已提交
777
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
778

W
wanghaoxu 已提交
779 780 781
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900010 | read data from message sequence failed |
W
wanghaoxu 已提交
782

Y
yangguangzhao 已提交
783
**示例:**
Y
yangguangzhao 已提交
784

Y
Yippo 已提交
785
  ```ts
W
wanghaoxu 已提交
786 787 788 789 790 791 792 793 794
  let data = rpc.MessageSequence.create();
  try {
      data.writeLong(10000);
  } catch(error) {
      console.info("rpc write long fail, errorCode " + error.code);
      console.info("rpc write long fail, errorMessage" + error.message);
  }
  try {
      let ret = data.readLong();
C
crazy_hu 已提交
795
      console.log("RpcClient: readLong is " + ret);
W
wanghaoxu 已提交
796 797 798 799
  } catch(error) {
      console.info("rpc read long fail, errorCode " + error.code);
      console.info("rpc read long fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
800 801 802 803
  ```

### writeFloat

W
wanghaoxu 已提交
804
writeFloat(val: number): void
Z
zengyawen 已提交
805

W
wanghaoxu 已提交
806
将浮点值写入MessageSequence实例。
Z
zengyawen 已提交
807

Y
yangguangzhao 已提交
808
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
809

W
wanghaoxu 已提交
810
**参数:**
W
wangqinxiao 已提交
811

W
wanghaoxu 已提交
812 813 814
  | 参数名 | 类型 | 必填 | 说明 |
  | ----- | ---- | ---- | ----- |
  | val | number | 是 | 要写入的浮点值。 |
Z
zengyawen 已提交
815

W
wanghaoxu 已提交
816 817
**错误码:**

C
crazy_hu 已提交
818
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wangqinxiao 已提交
819

W
wanghaoxu 已提交
820 821
  | 错误码ID | 错误信息 |
  | ------- | ------- |
C
crazy_hu 已提交
822
  | 1900009 | write data to message sequence failed |
Z
zengyawen 已提交
823

Y
yangguangzhao 已提交
824
**示例:**
Y
yangguangzhao 已提交
825

Y
Yippo 已提交
826
  ```ts
W
wanghaoxu 已提交
827 828 829 830 831 832 833
  let data = rpc.MessageSequence.create();
  try {
      data.writeFloat(1.2);
  } catch(error) {
      console.info("rpc write float fail, errorCode " + error.code);
      console.info("rpc write float fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
834 835 836 837 838 839
  ```

### readFloat

readFloat(): number

W
wanghaoxu 已提交
840
从MessageSequence实例中读取浮点值。
Z
zengyawen 已提交
841

Y
yangguangzhao 已提交
842
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
843

Y
yangguangzhao 已提交
844
**返回值:**
W
wangqinxiao 已提交
845

W
wanghaoxu 已提交
846 847
  | 类型   | 说明         |
  | ------ | ------------ |
Y
yangguangzhao 已提交
848
  | number | 返回浮点值。 |
Z
zengyawen 已提交
849

W
wanghaoxu 已提交
850 851
**错误码:**

C
crazy_hu 已提交
852
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
853

W
wanghaoxu 已提交
854 855 856
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900010 | read data from message sequence failed |
W
wanghaoxu 已提交
857

Y
yangguangzhao 已提交
858
**示例:**
Y
yangguangzhao 已提交
859

Y
Yippo 已提交
860
  ```ts
W
wanghaoxu 已提交
861 862 863 864 865 866 867 868 869
  let data = rpc.MessageSequence.create();
  try {
      data.writeFloat(1.2);
  } catch(error) {
      console.info("rpc write float fail, errorCode " + error.code);
      console.info("rpc write float fail, errorMessage" + error.message);
  }
  try {
      let ret = data.readFloat();
C
crazy_hu 已提交
870
      console.log("RpcClient: readFloat is " + ret);
W
wanghaoxu 已提交
871 872 873 874
  } catch(error) {
      console.info("rpc read float fail, errorCode " + error.code);
      console.info("rpc read float fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
875 876 877 878
  ```

### writeDouble

W
wanghaoxu 已提交
879
writeDouble(val: number): void
Z
zengyawen 已提交
880

W
wanghaoxu 已提交
881
将双精度浮点值写入MessageSequence实例。
Z
zengyawen 已提交
882

Y
yangguangzhao 已提交
883
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
884

W
wanghaoxu 已提交
885
**参数:**
W
wangqinxiao 已提交
886

W
wanghaoxu 已提交
887 888 889
  | 参数名 | 类型 | 必填 | 说明 |
  | ------ | ------ | ---- | ------ |
  | val  number | 是 | 要写入的双精度浮点值。 |
Z
zengyawen 已提交
890

W
wanghaoxu 已提交
891 892
**错误码:**

C
crazy_hu 已提交
893
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wangqinxiao 已提交
894

W
wanghaoxu 已提交
895 896 897
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900009 | write data to message sequence failed |
Z
zengyawen 已提交
898

Y
yangguangzhao 已提交
899
**示例:**
Y
yangguangzhao 已提交
900

Y
Yippo 已提交
901
  ```ts
W
wanghaoxu 已提交
902 903 904 905 906 907 908
  let data = rpc.MessageSequence.create();
  try {
      data.writeDouble(10.2);
  } catch(error) {
      console.info("rpc read float fail, errorCode " + error.code);
      console.info("rpc read float fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
909 910 911 912 913 914
  ```

### readDouble

readDouble(): number

W
wanghaoxu 已提交
915
从MessageSequence实例读取双精度浮点值。
Z
zengyawen 已提交
916

Y
yangguangzhao 已提交
917
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
918

Y
yangguangzhao 已提交
919
**返回值:**
W
wangqinxiao 已提交
920

W
wanghaoxu 已提交
921 922
  | 类型   | 说明               |
  | ------ | ------------------ |
Y
yangguangzhao 已提交
923
  | number | 返回双精度浮点值。 |
Z
zengyawen 已提交
924

W
wanghaoxu 已提交
925 926
**错误码:**

C
crazy_hu 已提交
927
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
928

W
wanghaoxu 已提交
929 930 931
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900010 | read data from message sequence failed |
W
wanghaoxu 已提交
932

Y
yangguangzhao 已提交
933
**示例:**
Y
yangguangzhao 已提交
934

Y
Yippo 已提交
935
  ```ts
W
wanghaoxu 已提交
936 937 938 939 940 941 942 943 944
  let data = rpc.MessageSequence.create();
  try {
      data.writeDouble(10.2);
  } catch(error) {
      console.info("rpc write double fail, errorCode " + error.code);
      console.info("rpc write double fail, errorMessage" + error.message);
  }
  try {
      let ret = data.readDouble();
C
crazy_hu 已提交
945
      console.log("RpcClient: readDouble is " + ret);
W
wanghaoxu 已提交
946 947 948 949
  } catch(error) {
      console.info("rpc read double fail, errorCode " + error.code);
      console.info("rpc read double fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
950 951 952 953
  ```

### writeBoolean

W
wanghaoxu 已提交
954
writeBoolean(val: boolean): void
Z
zengyawen 已提交
955

W
wanghaoxu 已提交
956
将布尔值写入MessageSequence实例。
Z
zengyawen 已提交
957

Y
yangguangzhao 已提交
958
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
959

W
wanghaoxu 已提交
960
**参数:**
W
wangqinxiao 已提交
961

W
wanghaoxu 已提交
962 963 964
  | 参数名 | 类型    | 必填 | 说明             |
  | ------ | ------- | ---- | ---------------- |
  | val    | boolean | 是   | 要写入的布尔值。 |
Z
zengyawen 已提交
965

W
wanghaoxu 已提交
966 967
**错误码:**

C
crazy_hu 已提交
968
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wangqinxiao 已提交
969

W
wanghaoxu 已提交
970 971 972
  | 错误码ID | 错误信息 |
  | ------- | ------- |
  | 1900009 | write data to message sequence failed |
Z
zengyawen 已提交
973

Y
yangguangzhao 已提交
974
**示例:**
Y
yangguangzhao 已提交
975

Y
Yippo 已提交
976
  ```ts
W
wanghaoxu 已提交
977 978 979 980 981 982 983
  let data = rpc.MessageSequence.create();
  try {
      data.writeBoolean(false);
  } catch(error) {
      console.info("rpc write boolean fail, errorCode " + error.code);
      console.info("rpc write boolean fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
984 985 986 987 988 989
  ```

### readBoolean

readBoolean(): boolean

W
wanghaoxu 已提交
990
从MessageSequence实例读取布尔值。
Z
zengyawen 已提交
991

Y
yangguangzhao 已提交
992
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
993

Y
yangguangzhao 已提交
994
**返回值:**
W
wangqinxiao 已提交
995

W
wanghaoxu 已提交
996 997
  | 类型    | 说明                 |
  | ------- | -------------------- |
Y
yangguangzhao 已提交
998
  | boolean | 返回读取到的布尔值。 |
Z
zengyawen 已提交
999

W
wanghaoxu 已提交
1000 1001
**错误码:**

C
crazy_hu 已提交
1002
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
1003

W
wanghaoxu 已提交
1004 1005 1006
  | 错误码ID | 错误信息 |
  | -------- | ------- |
  | 1900010 | read data from message sequence failed |
W
wanghaoxu 已提交
1007

Y
yangguangzhao 已提交
1008
**示例:**
Y
yangguangzhao 已提交
1009

Y
Yippo 已提交
1010
  ```ts
W
wanghaoxu 已提交
1011 1012 1013 1014 1015 1016 1017 1018 1019
  let data = rpc.MessageSequence.create();
  try {
      data.writeBoolean(false);
  } catch(error) {
      console.info("rpc write boolean fail, errorCode " + error.code);
      console.info("rpc write boolean fail, errorMessage" + error.message);
  }
  try {
      let ret = data.readBoolean();
C
crazy_hu 已提交
1020
      console.log("RpcClient: readBoolean is " + ret);
W
wanghaoxu 已提交
1021 1022 1023 1024
  } catch(error) {
      console.info("rpc read boolean fail, errorCode " + error.code);
      console.info("rpc read boolean fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
1025 1026 1027 1028
  ```

### writeChar

W
wanghaoxu 已提交
1029
writeChar(val: number): void
Z
zengyawen 已提交
1030

W
wanghaoxu 已提交
1031
将单个字符值写入MessageSequence实例。
Z
zengyawen 已提交
1032

Y
yangguangzhao 已提交
1033
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
1034

W
wanghaoxu 已提交
1035
**参数:**
W
wangqinxiao 已提交
1036

W
wanghaoxu 已提交
1037 1038 1039
  | 参数名 | 类型   | 必填 | 说明                 |
  | ------ | ------ | ---- | -------------------- |
  | val    | number | 是   | 要写入的单个字符值。 |
Z
zengyawen 已提交
1040

W
wanghaoxu 已提交
1041 1042
**错误码:**

C
crazy_hu 已提交
1043
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wangqinxiao 已提交
1044

W
wanghaoxu 已提交
1045 1046 1047
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900009 | write data to message sequence failed |
Z
zengyawen 已提交
1048

Y
yangguangzhao 已提交
1049
**示例:**
Y
yangguangzhao 已提交
1050

Y
Yippo 已提交
1051
  ```ts
W
wanghaoxu 已提交
1052 1053 1054 1055 1056 1057 1058
  let data = rpc.MessageSequence.create();
  try {
      data.writeChar(97);
  } catch(error) {
      console.info("rpc write char fail, errorCode " + error.code);
      console.info("rpc write char fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
1059 1060 1061 1062 1063 1064
  ```

### readChar

readChar(): number

W
wanghaoxu 已提交
1065
从MessageSequence实例中读取单个字符值。
Z
zengyawen 已提交
1066

Y
yangguangzhao 已提交
1067
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
1068

Y
yangguangzhao 已提交
1069
**返回值:**
W
wangqinxiao 已提交
1070

W
wanghaoxu 已提交
1071 1072
  | 类型   | 说明 |
  | ------ | ---- |
Y
yangguangzhao 已提交
1073
  | number | 返回单个字符值。 |
Z
zengyawen 已提交
1074

W
wanghaoxu 已提交
1075 1076
**错误码:**

C
crazy_hu 已提交
1077
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
1078

W
wanghaoxu 已提交
1079 1080 1081
  | 错误码ID | 错误信息 |
  | ------ | --------- |
  | 1900010 | read data from message sequence failed |
W
wanghaoxu 已提交
1082

Y
yangguangzhao 已提交
1083
**示例:**
Y
yangguangzhao 已提交
1084

Y
Yippo 已提交
1085
  ```ts
W
wanghaoxu 已提交
1086 1087 1088 1089 1090 1091 1092 1093 1094
  let data = rpc.MessageSequence.create();
  try {
      data.writeChar(97);
  } catch(error) {
      console.info("rpc write char fail, errorCode " + error.code);
      console.info("rpc write char fail, errorMessage" + error.message);
  }
  try {
      let ret = data.readChar();
C
crazy_hu 已提交
1095
      console.log("RpcClient: readChar is " + ret);
W
wanghaoxu 已提交
1096 1097 1098 1099
  } catch(error) {
      console.info("rpc read char fail, errorCode " + error.code);
      console.info("rpc read char fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
1100 1101 1102 1103
  ```

### writeString

W
wanghaoxu 已提交
1104
writeString(val: string): void
Z
zengyawen 已提交
1105

W
wanghaoxu 已提交
1106
将字符串值写入MessageSequence实例。
Z
zengyawen 已提交
1107

Y
yangguangzhao 已提交
1108
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
1109

W
wanghaoxu 已提交
1110
**参数:**
W
wangqinxiao 已提交
1111

W
wanghaoxu 已提交
1112 1113 1114
  | 参数名 | 类型   | 必填 | 说明                                      |
  | ------ | ------ | ---- | ----------------------------------------- |
  | val    | string | 是   | 要写入的字符串值,其长度应小于40960字节。 |
Z
zengyawen 已提交
1115

W
wanghaoxu 已提交
1116 1117
**错误码:**

C
crazy_hu 已提交
1118
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wangqinxiao 已提交
1119

W
wanghaoxu 已提交
1120 1121 1122
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900009 | write data to message sequence failed |
Z
zengyawen 已提交
1123

Y
yangguangzhao 已提交
1124
**示例:**
Y
yangguangzhao 已提交
1125

Y
Yippo 已提交
1126
  ```ts
W
wanghaoxu 已提交
1127 1128 1129 1130 1131 1132 1133
  let data = rpc.MessageSequence.create();
  try {
      data.writeString('abc');
  } catch(error) {
      console.info("rpc write string fail, errorCode " + error.code);
      console.info("rpc write string fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
1134 1135 1136 1137 1138 1139
  ```

### readString

readString(): string

W
wanghaoxu 已提交
1140
从MessageSequence实例读取字符串值。
Z
zengyawen 已提交
1141

Y
yangguangzhao 已提交
1142
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
1143

Y
yangguangzhao 已提交
1144
**返回值:**
W
wangqinxiao 已提交
1145

W
wanghaoxu 已提交
1146 1147
  | 类型   | 说明           |
  | ------ | -------------- |
Y
yangguangzhao 已提交
1148
  | string | 返回字符串值。 |
Z
zengyawen 已提交
1149

W
wanghaoxu 已提交
1150 1151
**错误码:**

C
crazy_hu 已提交
1152
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
1153

W
wanghaoxu 已提交
1154 1155 1156
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900010 | read data from message sequence failed |
W
wanghaoxu 已提交
1157

Y
yangguangzhao 已提交
1158
**示例:**
Y
yangguangzhao 已提交
1159

Y
Yippo 已提交
1160
  ```ts
W
wanghaoxu 已提交
1161 1162 1163 1164 1165 1166 1167 1168 1169
  let data = rpc.MessageSequence.create();
  try {
      data.writeString('abc');
  } catch(error) {
      console.info("rpc write string fail, errorCode " + error.code);
      console.info("rpc write string fail, errorMessage" + error.message);
  }
  try {
      let ret = data.readString();
C
crazy_hu 已提交
1170
      console.log("RpcClient: readString is " + ret);
W
wanghaoxu 已提交
1171 1172 1173 1174
  } catch(error) {
      console.info("rpc read string fail, errorCode " + error.code);
      console.info("rpc read string fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
1175 1176
  ```

W
wanghaoxu 已提交
1177
### writeParcelable
Z
zengyawen 已提交
1178

W
wanghaoxu 已提交
1179
writeParcelable(val: Parcelable): void
Z
zengyawen 已提交
1180

W
wanghaoxu 已提交
1181
将自定义序列化对象写入MessageSequence实例。
Z
zengyawen 已提交
1182

Y
yangguangzhao 已提交
1183
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
1184

W
wanghaoxu 已提交
1185
**参数:**
W
wangqinxiao 已提交
1186

W
wanghaoxu 已提交
1187 1188
  | 参数名 | 类型 | 必填 | 说明 |
  | ------ | --------- | ---- | ------ |
W
wanghaoxu 已提交
1189
  | val    | Parcelable | 是   | 要写入的可序列对象。 |
Z
zengyawen 已提交
1190

W
wanghaoxu 已提交
1191 1192
**错误码:**

C
crazy_hu 已提交
1193
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wangqinxiao 已提交
1194

W
wanghaoxu 已提交
1195 1196 1197
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900009 | write data to message sequence failed |
Z
zengyawen 已提交
1198

Y
yangguangzhao 已提交
1199
**示例:**
Y
yangguangzhao 已提交
1200

Y
Yippo 已提交
1201
  ```ts
Z
zengyawen 已提交
1202
  class MySequenceable {
Y
yangguangzhao 已提交
1203 1204 1205
      num: number;
      str: string;
      constructor(num, str) {
Z
zengyawen 已提交
1206
          this.num = num;
Y
yangguangzhao 已提交
1207
          this.str = str;
Z
zengyawen 已提交
1208
      }
W
wanghaoxu 已提交
1209 1210 1211
      marshalling(messageSequence) {
          messageSequence.writeInt(this.num);
          messageSequence.writeString(this.str);
Z
zengyawen 已提交
1212 1213
          return true;
      }
W
wanghaoxu 已提交
1214 1215 1216
      unmarshalling(messageSequence) {
          this.num = messageSequence.readInt();
          this.str = messageSequence.readString();
Z
zengyawen 已提交
1217 1218 1219
          return true;
      }
  }
C
crazy_hu 已提交
1220
  let parcelable = new MySequenceable(1, "aaa");
W
wanghaoxu 已提交
1221 1222 1223 1224 1225 1226 1227
  let data = rpc.MessageSequence.create();
  try {
      data.writeParcelable(parcelable);
  } catch(error) {
      console.info("rpc write parcelable fail, errorCode " + error.code);
      console.info("rpc write parcelable fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
1228 1229
  ```

W
wanghaoxu 已提交
1230
### readParcelable
Z
zengyawen 已提交
1231

C
crazy_hu 已提交
1232
readParcelable(dataIn: Parcelable): void
Z
zengyawen 已提交
1233

W
wanghaoxu 已提交
1234
从MessageSequence实例中读取成员变量到指定的对象(dataIn)。
Z
zengyawen 已提交
1235

Y
yangguangzhao 已提交
1236
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
1237

W
wanghaoxu 已提交
1238
**参数:**
W
wangqinxiao 已提交
1239

W
wanghaoxu 已提交
1240 1241
  | 参数名 | 类型                      | 必填 | 说明                                      |
  | ------ | ------------------------- | ---- | ----------------------------------------- |
W
wanghaoxu 已提交
1242
  | dataIn | Parcelable | 是   | 需要从MessageSequence读取成员变量的对象。 |
Z
zengyawen 已提交
1243

W
wanghaoxu 已提交
1244 1245
**错误码:**

C
crazy_hu 已提交
1246
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wangqinxiao 已提交
1247

W
wanghaoxu 已提交
1248 1249 1250 1251
  | 错误码ID | 错误信息 |
  | -------- | ------- |
  | 1900010 | read data from message sequence failed |
  | 1900012 | call js callback function failed |
Z
zengyawen 已提交
1252

Y
yangguangzhao 已提交
1253
**示例:**
Y
yangguangzhao 已提交
1254

Y
Yippo 已提交
1255
  ```ts
Z
zengyawen 已提交
1256
  class MySequenceable {
Y
yangguangzhao 已提交
1257 1258 1259
      num: number;
      str: string;
      constructor(num, str) {
Z
zengyawen 已提交
1260
          this.num = num;
Y
yangguangzhao 已提交
1261
          this.str = str;
Z
zengyawen 已提交
1262
      }
W
wanghaoxu 已提交
1263 1264 1265
      marshalling(messageSequence) {
          messageSequence.writeInt(this.num);
          messageSequence.writeString(this.str);
Z
zengyawen 已提交
1266 1267
          return true;
      }
W
wanghaoxu 已提交
1268 1269 1270
      unmarshalling(messageSequence) {
          this.num = messageSequence.readInt();
          this.str = messageSequence.readString();
Z
zengyawen 已提交
1271 1272 1273
          return true;
      }
  }
C
crazy_hu 已提交
1274
  let parcelable = new MySequenceable(1, "aaa");
W
wanghaoxu 已提交
1275 1276
  let data = rpc.MessageSequence.create();
  data.writeParcelable(parcelable);
C
crazy_hu 已提交
1277
  let ret = new MySequenceable(0, "");
W
wanghaoxu 已提交
1278 1279
  try {
      data.readParcelable(ret);
C
crazy_hu 已提交
1280
  }catch(error) {
W
wanghaoxu 已提交
1281 1282 1283
      console.info("rpc read parcelable fail, errorCode " + error.code);
      console.info("rpc read parcelable fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
1284 1285 1286 1287
  ```

### writeByteArray

W
wanghaoxu 已提交
1288
writeByteArray(byteArray: number[]): void
Z
zengyawen 已提交
1289

W
wanghaoxu 已提交
1290
将字节数组写入MessageSequence实例。
Z
zengyawen 已提交
1291

Y
yangguangzhao 已提交
1292
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
1293

W
wanghaoxu 已提交
1294
**参数:**
W
wangqinxiao 已提交
1295

W
wanghaoxu 已提交
1296 1297 1298
  | 参数名    | 类型     | 必填 | 说明               |
  | --------- | -------- | ---- | ------------------ |
  | byteArray | number[] | 是   | 要写入的字节数组。 |
Z
zengyawen 已提交
1299

W
wanghaoxu 已提交
1300 1301
**错误码:**

C
crazy_hu 已提交
1302
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wangqinxiao 已提交
1303

W
wanghaoxu 已提交
1304 1305 1306
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900009 | write data to message sequence failed |
Z
zengyawen 已提交
1307

Y
yangguangzhao 已提交
1308
**示例:**
Y
yangguangzhao 已提交
1309

Y
Yippo 已提交
1310
  ```ts
W
wanghaoxu 已提交
1311
  let data = rpc.MessageSequence.create();
Y
yangguangzhao 已提交
1312
  let ByteArrayVar = [1, 2, 3, 4, 5];
W
wanghaoxu 已提交
1313 1314 1315 1316 1317 1318
  try {
      data.writeByteArray(ByteArrayVar);
  } catch(error) {
      console.info("rpc write byteArray fail, errorCode " + error.code);
      console.info("rpc write byteArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
1319 1320 1321 1322
  ```

### readByteArray

C
crazy_hu 已提交
1323
readByteArray(dataIn: number[]): void
Z
zengyawen 已提交
1324

W
wanghaoxu 已提交
1325
从MessageSequence实例读取字节数组。
Z
zengyawen 已提交
1326

Y
yangguangzhao 已提交
1327
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
1328

W
wanghaoxu 已提交
1329
**参数:**
W
wangqinxiao 已提交
1330

W
wanghaoxu 已提交
1331 1332 1333 1334
  | 参数名 | 类型     | 必填 | 说明               |
  | ------ | -------- | ---- | ------------------ |
  | dataIn | number[] | 是   | 要读取的字节数组。 |

W
wanghaoxu 已提交
1335 1336
**错误码:**

C
crazy_hu 已提交
1337
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
1338

W
wanghaoxu 已提交
1339 1340 1341
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900010 | read data from message sequence failed |
Z
zengyawen 已提交
1342

Y
yangguangzhao 已提交
1343
**示例:**
Y
yangguangzhao 已提交
1344

Y
Yippo 已提交
1345
  ```ts
W
wanghaoxu 已提交
1346
  let data = rpc.MessageSequence.create();
Y
yangguangzhao 已提交
1347
  let ByteArrayVar = [1, 2, 3, 4, 5];
W
wanghaoxu 已提交
1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360
  try {
      data.writeByteArray(ByteArrayVar);
  } catch(error) {
      console.info("rpc write byteArray fail, errorCode " + error.code);
      console.info("rpc write byteArray fail, errorMessage" + error.message);
  }
  try {
      let array = new Array(5);
      data.readByteArray(array);
  } catch(error) {
      console.info("rpc write byteArray fail, errorCode " + error.code);
      console.info("rpc write byteArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
1361 1362 1363 1364 1365 1366
  ```

### readByteArray

readByteArray(): number[]

W
wanghaoxu 已提交
1367
从MessageSequence实例中读取字节数组。
Z
zengyawen 已提交
1368

Y
yangguangzhao 已提交
1369
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
1370

Y
yangguangzhao 已提交
1371
**返回值:**
W
wangqinxiao 已提交
1372

W
wanghaoxu 已提交
1373 1374
  | 类型     | 说明           |
  | -------- | -------------- |
Y
yangguangzhao 已提交
1375
  | number[] | 返回字节数组。 |
Z
zengyawen 已提交
1376

W
wanghaoxu 已提交
1377 1378
**错误码:**

C
crazy_hu 已提交
1379
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
1380

W
wanghaoxu 已提交
1381 1382 1383
  | 错误码ID | 错误信息 |
  | -------- | ------- |
  | 1900010 | read data from message sequence failed |
W
wanghaoxu 已提交
1384

Y
yangguangzhao 已提交
1385
**示例:**
Y
yangguangzhao 已提交
1386

Y
Yippo 已提交
1387
  ```ts
W
wanghaoxu 已提交
1388
  let data = rpc.MessageSequence.create();
C
crazy_hu 已提交
1389
  let byteArrayVar = [1, 2, 3, 4, 5];
W
wanghaoxu 已提交
1390
  try {
C
crazy_hu 已提交
1391
      data.writeByteArray(byteArrayVar);
W
wanghaoxu 已提交
1392 1393 1394 1395 1396 1397
  } catch(error) {
      console.info("rpc write byteArray fail, errorCode " + error.code);
      console.info("rpc write byteArray fail, errorMessage" + error.message);
  }
  try {
      let array = data.readByteArray();
C
crazy_hu 已提交
1398
      console.log("RpcClient: readByteArray is " + array);
W
wanghaoxu 已提交
1399 1400 1401 1402
  } catch(error) {
      console.info("rpc read byteArray fail, errorCode " + error.code);
      console.info("rpc read byteArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
1403 1404 1405 1406
  ```

### writeShortArray

W
wanghaoxu 已提交
1407
writeShortArray(shortArray: number[]): void
Z
zengyawen 已提交
1408

W
wanghaoxu 已提交
1409
将短整数数组写入MessageSequence实例。
Z
zengyawen 已提交
1410

Y
yangguangzhao 已提交
1411
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
1412

W
wanghaoxu 已提交
1413
**参数:**
W
wangqinxiao 已提交
1414

W
wanghaoxu 已提交
1415 1416 1417
  | 参数名     | 类型     | 必填 | 说明                 |
  | ---------- | -------- | ---- | -------------------- |
  | shortArray | number[] | 是   | 要写入的短整数数组。 |
Z
zengyawen 已提交
1418

W
wanghaoxu 已提交
1419 1420
**错误码:**

C
crazy_hu 已提交
1421
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wangqinxiao 已提交
1422

W
wanghaoxu 已提交
1423 1424 1425
  | 错误码ID | 错误信息 |
  | ----- | ----- |
  | 1900009 | write data to message sequence failed |
Z
zengyawen 已提交
1426

Y
yangguangzhao 已提交
1427
**示例:**
Y
yangguangzhao 已提交
1428

Y
Yippo 已提交
1429
  ```ts
W
wanghaoxu 已提交
1430 1431 1432 1433 1434 1435 1436
  let data = rpc.MessageSequence.create();
  try {
      data.writeShortArray([11, 12, 13]);
  } catch(error) {
      console.info("rpc read byteArray fail, errorCode " + error.code);
      console.info("rpc read byteArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
1437 1438 1439 1440
  ```

### readShortArray

C
crazy_hu 已提交
1441
readShortArray(dataIn: number[]): void
Z
zengyawen 已提交
1442

W
wanghaoxu 已提交
1443
从MessageSequence实例中读取短整数数组。
Z
zengyawen 已提交
1444

Y
yangguangzhao 已提交
1445
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
1446

W
wanghaoxu 已提交
1447
**参数:**
W
wangqinxiao 已提交
1448

W
wanghaoxu 已提交
1449 1450 1451 1452
  | 参数名 | 类型     | 必填 | 说明                 |
  | ------ | -------- | ---- | -------------------- |
  | dataIn | number[] | 是   | 要读取的短整数数组。 |

W
wanghaoxu 已提交
1453 1454
**错误码:**

C
crazy_hu 已提交
1455
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
1456

W
wanghaoxu 已提交
1457 1458 1459
  | 错误码ID | 错误信息 |
  | ------ | ------- |
  | 1900010 | read data from message sequence failed |
Z
zengyawen 已提交
1460

Y
yangguangzhao 已提交
1461
**示例:**
Y
yangguangzhao 已提交
1462

Y
Yippo 已提交
1463
  ```ts
W
wanghaoxu 已提交
1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477
  let data = rpc.MessageSequence.create();
  try {
      data.writeShortArray([11, 12, 13]);
  } catch(error) {
      console.info("rpc write shortArray fail, errorCode " + error.code);
      console.info("rpc write shortArray fail, errorMessage" + error.message);
  }
  try {
      let array = new Array(3);
      data.readShortArray(array);
  } catch(error) {
      console.info("rpc read shortArray fail, errorCode " + error.code);
      console.info("rpc read shortArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
1478 1479 1480 1481 1482 1483
  ```

### readShortArray

readShortArray(): number[]

W
wanghaoxu 已提交
1484
从MessageSequence实例中读取短整数数组。
Z
zengyawen 已提交
1485

Y
yangguangzhao 已提交
1486
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
1487

Y
yangguangzhao 已提交
1488
**返回值:**
W
wangqinxiao 已提交
1489

W
wanghaoxu 已提交
1490 1491
  | 类型     | 说明             |
  | -------- | ---------------- |
Y
yangguangzhao 已提交
1492
  | number[] | 返回短整数数组。 |
Z
zengyawen 已提交
1493

W
wanghaoxu 已提交
1494 1495
**错误码:**

C
crazy_hu 已提交
1496
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
1497

W
wanghaoxu 已提交
1498 1499 1500
  | 错误码ID | 错误信息 |
  | -------- | ------- |
  | 1900010 | read data from message sequence failed |
W
wanghaoxu 已提交
1501

Y
yangguangzhao 已提交
1502
**示例:**
Y
yangguangzhao 已提交
1503

Y
Yippo 已提交
1504
  ```ts
W
wanghaoxu 已提交
1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518
  let data = rpc.MessageSequence.create();
  try {
      data.writeShortArray([11, 12, 13]);
  } catch(error) {
      console.info("rpc write shortArray fail, errorCode " + error.code);
      console.info("rpc write shortArray fail, errorMessage" + error.message);
  }
  try {
      let array = data.readShortArray();
      console.log("RpcClient: readShortArray is " + array);
  } catch(error) {
      console.info("rpc read shortArray fail, errorCode " + error.code);
      console.info("rpc read shortArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
1519 1520 1521 1522
  ```

### writeIntArray

W
wanghaoxu 已提交
1523
writeIntArray(intArray: number[]): void
Z
zengyawen 已提交
1524

W
wanghaoxu 已提交
1525
将整数数组写入MessageSequence实例。
Z
zengyawen 已提交
1526

Y
yangguangzhao 已提交
1527
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
1528

W
wanghaoxu 已提交
1529
**参数:**
W
wangqinxiao 已提交
1530

W
wanghaoxu 已提交
1531 1532 1533
  | 参数名   | 类型     | 必填 | 说明               |
  | -------- | -------- | ---- | ------------------ |
  | intArray | number[] | 是   | 要写入的整数数组。 |
Z
zengyawen 已提交
1534

W
wanghaoxu 已提交
1535 1536
**错误码:**

C
crazy_hu 已提交
1537
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wangqinxiao 已提交
1538

W
wanghaoxu 已提交
1539 1540 1541
  | 错误码ID | 错误信息 |
  | ----- | --------- |
  | 1900009 | write data to message sequence failed |
Z
zengyawen 已提交
1542

Y
yangguangzhao 已提交
1543
**示例:**
Y
yangguangzhao 已提交
1544

Y
Yippo 已提交
1545
  ```ts
W
wanghaoxu 已提交
1546 1547 1548 1549 1550 1551 1552
  let data = rpc.MessageSequence.create();
  try {
      data.writeIntArray([100, 111, 112]);
  } catch(error) {
      console.info("rpc write intArray fail, errorCode " + error.code);
      console.info("rpc write intArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
1553 1554 1555 1556
  ```

### readIntArray

C
crazy_hu 已提交
1557
readIntArray(dataIn: number[]): void
Z
zengyawen 已提交
1558

W
wanghaoxu 已提交
1559
从MessageSequence实例中读取整数数组。
Z
zengyawen 已提交
1560

Y
yangguangzhao 已提交
1561
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
1562

W
wanghaoxu 已提交
1563
**参数:**
W
wangqinxiao 已提交
1564

W
wanghaoxu 已提交
1565 1566 1567 1568
  | 参数名 | 类型     | 必填 | 说明               |
  | ------ | -------- | ---- | ------------------ |
  | dataIn | number[] | 是   | 要读取的整数数组。 |

W
wanghaoxu 已提交
1569 1570
**错误码:**

C
crazy_hu 已提交
1571
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
1572

W
wanghaoxu 已提交
1573 1574 1575
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900010 | read data from message sequence failed |
Z
zengyawen 已提交
1576

Y
yangguangzhao 已提交
1577
**示例:**
Y
yangguangzhao 已提交
1578

Y
Yippo 已提交
1579
  ```ts
W
wanghaoxu 已提交
1580 1581 1582 1583 1584 1585 1586
  let data = rpc.MessageSequence.create();
  try {
      data.writeIntArray([100, 111, 112]);
  } catch(error) {
      console.info("rpc write intArray fail, errorCode " + error.code);
      console.info("rpc write intArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
1587
  let array = new Array(3);
W
wanghaoxu 已提交
1588 1589 1590 1591 1592 1593
  try {
      data.readIntArray(array);
  } catch(error) {
      console.info("rpc read intArray fail, errorCode " + error.code);
      console.info("rpc read intArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
1594 1595 1596 1597 1598 1599
  ```

### readIntArray

readIntArray(): number[]

W
wanghaoxu 已提交
1600
从MessageSequence实例中读取整数数组。
Z
zengyawen 已提交
1601

Y
yangguangzhao 已提交
1602
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
1603

Y
yangguangzhao 已提交
1604
**返回值:**
W
wangqinxiao 已提交
1605

W
wanghaoxu 已提交
1606 1607
  | 类型     | 说明           |
  | -------- | -------------- |
Y
yangguangzhao 已提交
1608
  | number[] | 返回整数数组。 |
Z
zengyawen 已提交
1609

W
wanghaoxu 已提交
1610 1611
**错误码:**

C
crazy_hu 已提交
1612
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
1613

W
wanghaoxu 已提交
1614 1615 1616
  | 错误码ID | 错误信息 |
  | ----- | ------- |
  | 1900010 | read data from message sequence failed |
W
wanghaoxu 已提交
1617

Y
yangguangzhao 已提交
1618
**示例:**
Y
yangguangzhao 已提交
1619

Y
Yippo 已提交
1620
  ```ts
W
wanghaoxu 已提交
1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634
  let data = rpc.MessageSequence.create();
  try {
      data.writeIntArray([100, 111, 112]);
  } catch(error) {
      console.info("rpc write intArray fail, errorCode " + error.code);
      console.info("rpc write intArray fail, errorMessage" + error.message);
  }
  try {
    let array = data.readIntArray();
    console.log("RpcClient: readIntArray is " + array);
  } catch(error) {
      console.info("rpc read intArray fail, errorCode " + error.code);
      console.info("rpc read intArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
1635 1636 1637 1638
  ```

### writeLongArray

W
wanghaoxu 已提交
1639
writeLongArray(longArray: number[]): void
Z
zengyawen 已提交
1640

W
wanghaoxu 已提交
1641
将长整数数组写入MessageSequence实例。
Z
zengyawen 已提交
1642

Y
yangguangzhao 已提交
1643
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
1644

W
wanghaoxu 已提交
1645
**参数:**
W
wangqinxiao 已提交
1646

W
wanghaoxu 已提交
1647 1648 1649
  | 参数名    | 类型     | 必填 | 说明                 |
  | --------- | -------- | ---- | -------------------- |
  | longArray | number[] | 是   | 要写入的长整数数组。 |
Z
zengyawen 已提交
1650

W
wanghaoxu 已提交
1651 1652
**错误码:**

C
crazy_hu 已提交
1653
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wangqinxiao 已提交
1654

W
wanghaoxu 已提交
1655 1656 1657
  | 错误码ID | 错误信息 |
  | -------  | ----- |
  | 1900009 | write data to message sequence failed |
Z
zengyawen 已提交
1658

Y
yangguangzhao 已提交
1659
**示例:**
Y
yangguangzhao 已提交
1660

Y
Yippo 已提交
1661
  ```ts
W
wanghaoxu 已提交
1662 1663 1664
  let data = rpc.MessageSequence.create();
  try {
      data.writeLongArray([1111, 1112, 1113]);
C
crazy_hu 已提交
1665
  }catch(error){
W
wanghaoxu 已提交
1666 1667 1668
      console.info("rpc write longArray fail, errorCode " + error.code);
      console.info("rpc write longArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
1669 1670 1671 1672
  ```

### readLongArray

C
crazy_hu 已提交
1673
readLongArray(dataIn: number[]): void
Z
zengyawen 已提交
1674

Y
Yippo 已提交
1675
从MessageSequence实例读取的长整数数组。
Z
zengyawen 已提交
1676

Y
yangguangzhao 已提交
1677
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
1678

W
wanghaoxu 已提交
1679
**参数:**
W
wangqinxiao 已提交
1680

W
wanghaoxu 已提交
1681 1682 1683 1684
  | 参数名 | 类型     | 必填 | 说明                 |
  | ------ | -------- | ---- | -------------------- |
  | dataIn | number[] | 是   | 要读取的长整数数组。 |

W
wanghaoxu 已提交
1685 1686
**错误码:**

C
crazy_hu 已提交
1687
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
1688

W
wanghaoxu 已提交
1689 1690 1691
  | 错误码ID | 错误信息 |
  | ------- | ------ |
  | 1900010 | read data from message sequence failed |
Z
zengyawen 已提交
1692

Y
yangguangzhao 已提交
1693
**示例:**
Y
yangguangzhao 已提交
1694

Y
Yippo 已提交
1695
  ```ts
W
wanghaoxu 已提交
1696 1697 1698 1699 1700 1701 1702
  let data = rpc.MessageSequence.create();
  try {
      data.writeLongArray([1111, 1112, 1113]);
  } catch(error) {
      console.info("rpc write longArray fail, errorCode " + error.code);
      console.info("rpc write longArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
1703
  let array = new Array(3);
W
wanghaoxu 已提交
1704 1705 1706 1707 1708 1709
  try {
      data.readLongArray(array);
  } catch(error) {
      console.info("rpc read longArray fail, errorCode " + error.code);
      console.info("rpc read longArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
1710 1711 1712 1713 1714 1715
  ```

### readLongArray

readLongArray(): number[]

1716
从MessageSequence实例中读取所有的长整数数组。
Z
zengyawen 已提交
1717

Y
yangguangzhao 已提交
1718
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
1719

Y
yangguangzhao 已提交
1720
**返回值:**
W
wangqinxiao 已提交
1721

W
wanghaoxu 已提交
1722 1723
  | 类型     | 说明             |
  | -------- | ---------------- |
Y
yangguangzhao 已提交
1724
  | number[] | 返回长整数数组。 |
Z
zengyawen 已提交
1725

W
wanghaoxu 已提交
1726 1727
**错误码:**

C
crazy_hu 已提交
1728
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
1729

W
wanghaoxu 已提交
1730 1731 1732
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900010 | read data from message sequence failed |
W
wanghaoxu 已提交
1733

Y
yangguangzhao 已提交
1734
**示例:**
Y
yangguangzhao 已提交
1735

Y
Yippo 已提交
1736
  ```ts
W
wanghaoxu 已提交
1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750
  let data = rpc.MessageSequence.create();
  try {
      data.writeLongArray([1111, 1112, 1113]);
  } catch(error) {
      console.info("rpc write longArray fail, errorCode " + error.code);
      console.info("rpc write longArray fail, errorMessage" + error.message);
  }
  try {
      let array = data.readLongArray();
      console.log("RpcClient: readLongArray is " + array);
  } catch(error) {
      console.info("rpc read longArray fail, errorCode " + error.code);
      console.info("rpc read longArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
1751 1752 1753 1754
  ```

### writeFloatArray

W
wanghaoxu 已提交
1755
writeFloatArray(floatArray: number[]): void
Z
zengyawen 已提交
1756

W
wanghaoxu 已提交
1757
将浮点数组写入MessageSequence实例。
Z
zengyawen 已提交
1758

Y
yangguangzhao 已提交
1759
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
1760

W
wanghaoxu 已提交
1761
**参数:**
W
wangqinxiao 已提交
1762

W
wanghaoxu 已提交
1763 1764 1765
  | 参数名     | 类型     | 必填 | 说明                                                                                                                    |
  | ---------- | -------- | ---- | ----------------------------------------------------------------------------------------------------------------------- |
  | floatArray | number[] | 是   | 要写入的浮点数组。由于系统内部对float类型的数据是按照double处理的,使用时对于数组所占的总字节数应按照double类型来计算。 |
Z
zengyawen 已提交
1766

W
wanghaoxu 已提交
1767 1768
**错误码:**

C
crazy_hu 已提交
1769
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wangqinxiao 已提交
1770

W
wanghaoxu 已提交
1771 1772 1773
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900009 | write data to message sequence failed |
Z
zengyawen 已提交
1774

Y
yangguangzhao 已提交
1775
**示例:**
Y
yangguangzhao 已提交
1776

Y
Yippo 已提交
1777
  ```ts
W
wanghaoxu 已提交
1778 1779 1780 1781 1782 1783 1784
  let data = rpc.MessageSequence.create();
  try {
      data.writeFloatArray([1.2, 1.3, 1.4]);
  } catch(error) {
      console.info("rpc write floatArray fail, errorCode " + error.code);
      console.info("rpc write floatArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
1785 1786 1787 1788
  ```

### readFloatArray

C
crazy_hu 已提交
1789
readFloatArray(dataIn: number[]): void
Z
zengyawen 已提交
1790

W
wanghaoxu 已提交
1791
从MessageSequence实例中读取浮点数组。
Z
zengyawen 已提交
1792

Y
yangguangzhao 已提交
1793 1794
**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
1795
**参数:**
W
wangqinxiao 已提交
1796

W
wanghaoxu 已提交
1797 1798 1799 1800
  | 参数名 | 类型     | 必填 | 说明                                                                                                                    |
  | ------ | -------- | ---- | ----------------------------------------------------------------------------------------------------------------------- |
  | dataIn | number[] | 是   | 要读取的浮点数组。由于系统内部对float类型的数据是按照double处理的,使用时对于数组所占的总字节数应按照double类型来计算。 |

W
wanghaoxu 已提交
1801 1802
**错误码:**

C
crazy_hu 已提交
1803
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
Z
zengyawen 已提交
1804

W
wanghaoxu 已提交
1805 1806 1807
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900010 | read data from message sequence failed |
Z
zengyawen 已提交
1808

Y
yangguangzhao 已提交
1809
**示例:**
Y
yangguangzhao 已提交
1810

Y
Yippo 已提交
1811
  ```ts
W
wanghaoxu 已提交
1812 1813 1814
  let data = rpc.MessageSequence.create();
  try {
      data.writeFloatArray([1.2, 1.3, 1.4]);
C
crazy_hu 已提交
1815
  }catch(error){
W
wanghaoxu 已提交
1816 1817 1818
      console.info("rpc write floatArray fail, errorCode " + error.code);
      console.info("rpc write floatArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
1819
  let array = new Array(3);
W
wanghaoxu 已提交
1820 1821 1822 1823 1824 1825
  try {
      data.readFloatArray(array);
  } catch(error) {
      console.info("rpc read floatArray fail, errorCode " + error.code);
      console.info("rpc read floatArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
1826 1827 1828 1829 1830 1831
  ```

### readFloatArray

readFloatArray(): number[]

W
wanghaoxu 已提交
1832
从MessageSequence实例中读取浮点数组。
Z
zengyawen 已提交
1833

Y
yangguangzhao 已提交
1834
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
1835

Y
yangguangzhao 已提交
1836
**返回值:**
W
wangqinxiao 已提交
1837

W
wanghaoxu 已提交
1838 1839
  | 类型     | 说明           |
  | -------- | -------------- |
Y
yangguangzhao 已提交
1840
  | number[] | 返回浮点数组。 |
Z
zengyawen 已提交
1841

W
wanghaoxu 已提交
1842 1843
**错误码:**

C
crazy_hu 已提交
1844
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
1845

W
wanghaoxu 已提交
1846 1847 1848
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900010 | read data from message sequence failed |
W
wanghaoxu 已提交
1849

Y
yangguangzhao 已提交
1850
**示例:**
Y
yangguangzhao 已提交
1851

Y
Yippo 已提交
1852
  ```ts
W
wanghaoxu 已提交
1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866
  let data = rpc.MessageSequence.create();
  try {
      data.writeFloatArray([1.2, 1.3, 1.4]);
  } catch(error) {
      console.info("rpc write floatArray fail, errorCode " + error.code);
      console.info("rpc write floatArray fail, errorMessage" + error.message);
  }
  try {
      let array = data.readFloatArray();
      console.log("RpcClient: readFloatArray is " + array);
  } catch(error) {
      console.info("rpc read floatArray fail, errorCode " + error.code);
      console.info("rpc read floatArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
1867 1868 1869 1870
  ```

### writeDoubleArray

W
wanghaoxu 已提交
1871
writeDoubleArray(doubleArray: number[]): void
Z
zengyawen 已提交
1872

W
wanghaoxu 已提交
1873
将双精度浮点数组写入MessageSequence实例。
Z
zengyawen 已提交
1874

Y
yangguangzhao 已提交
1875
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
1876

W
wanghaoxu 已提交
1877
**参数:**
W
wangqinxiao 已提交
1878

W
wanghaoxu 已提交
1879 1880 1881
  | 参数名      | 类型     | 必填 | 说明                     |
  | ----------- | -------- | ---- | ------------------------ |
  | doubleArray | number[] | 是   | 要写入的双精度浮点数组。 |
Z
zengyawen 已提交
1882

W
wanghaoxu 已提交
1883 1884
**错误码:**

C
crazy_hu 已提交
1885
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wangqinxiao 已提交
1886

W
wanghaoxu 已提交
1887 1888 1889
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900009 | write data to message sequence failed |
Z
zengyawen 已提交
1890

Y
yangguangzhao 已提交
1891
**示例:**
Y
yangguangzhao 已提交
1892

Y
Yippo 已提交
1893
  ```ts
W
wanghaoxu 已提交
1894 1895 1896 1897 1898 1899 1900
  let data = rpc.MessageSequence.create();
  try {
      data.writeDoubleArray([11.1, 12.2, 13.3]);
  } catch(error) {
      console.info("rpc write doubleArray fail, errorCode " + error.code);
      console.info("rpc write doubleArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
1901 1902 1903 1904
  ```

### readDoubleArray

C
crazy_hu 已提交
1905
readDoubleArray(dataIn: number[]): void
Z
zengyawen 已提交
1906

Y
Yippo 已提交
1907
从MessageSequence实例中读取双精度浮点数组。
Z
zengyawen 已提交
1908

Y
yangguangzhao 已提交
1909
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
1910

W
wanghaoxu 已提交
1911
**参数:**
W
wangqinxiao 已提交
1912

W
wanghaoxu 已提交
1913 1914 1915 1916
  | 参数名 | 类型     | 必填 | 说明                     |
  | ------ | -------- | ---- | ------------------------ |
  | dataIn | number[] | 是   | 要读取的双精度浮点数组。 |

W
wanghaoxu 已提交
1917 1918
**错误码:**

C
crazy_hu 已提交
1919
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
1920

W
wanghaoxu 已提交
1921 1922 1923
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900010 | read data from message sequence failed |
Z
zengyawen 已提交
1924

Y
yangguangzhao 已提交
1925
**示例:**
Y
yangguangzhao 已提交
1926

Y
Yippo 已提交
1927
  ```ts
W
wanghaoxu 已提交
1928 1929 1930 1931 1932 1933 1934
  let data = rpc.MessageSequence.create();
  try {
      data.writeDoubleArray([11.1, 12.2, 13.3]);
  } catch(error) {
      console.info("rpc write doubleArray fail, errorCode " + error.code);
      console.info("rpc write doubleArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
1935
  let array = new Array(3);
W
wanghaoxu 已提交
1936 1937 1938 1939 1940 1941
  try {
      data.readDoubleArray(array);
  } catch(error) {
      console.info("rpc read doubleArray fail, errorCode " + error.code);
      console.info("rpc read doubleArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
1942 1943 1944 1945 1946 1947
  ```

### readDoubleArray

readDoubleArray(): number[]

1948
从MessageSequence实例读取所有双精度浮点数组。
Z
zengyawen 已提交
1949

Y
yangguangzhao 已提交
1950
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
1951

Y
yangguangzhao 已提交
1952
**返回值:**
W
wangqinxiao 已提交
1953

W
wanghaoxu 已提交
1954 1955
  | 类型     | 说明                 |
  | -------- | -------------------- |
Y
yangguangzhao 已提交
1956
  | number[] | 返回双精度浮点数组。 |
Z
zengyawen 已提交
1957

W
wanghaoxu 已提交
1958 1959
**错误码:**

C
crazy_hu 已提交
1960
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
1961

W
wanghaoxu 已提交
1962 1963 1964
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900010 | read data from message sequence failed |
W
wanghaoxu 已提交
1965

Y
yangguangzhao 已提交
1966
**示例:**
Y
yangguangzhao 已提交
1967

Y
Yippo 已提交
1968
  ```ts
W
wanghaoxu 已提交
1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982
  let data = rpc.MessageSequence.create();
  try {
      data.writeDoubleArray([11.1, 12.2, 13.3]);
  } catch(error) {
      console.info("rpc write doubleArray fail, errorCode " + error.code);
      console.info("rpc write doubleArray fail, errorMessage" + error.message);
  }
  try {
      let array = data.readDoubleArray();
      console.log("RpcClient: readDoubleArray is " + array);
  } catch(error) {
      console.info("rpc read doubleArray fail, errorCode " + error.code);
      console.info("rpc read doubleArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
1983 1984 1985 1986
  ```

### writeBooleanArray

W
wanghaoxu 已提交
1987
writeBooleanArray(booleanArray: boolean[]): void
Z
zengyawen 已提交
1988

W
wanghaoxu 已提交
1989
将布尔数组写入MessageSequence实例。
Z
zengyawen 已提交
1990

Y
yangguangzhao 已提交
1991
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
1992

W
wanghaoxu 已提交
1993
**参数:**
W
wangqinxiao 已提交
1994

W
wanghaoxu 已提交
1995 1996 1997
  | 参数名       | 类型      | 必填 | 说明               |
  | ------------ | --------- | ---- | ------------------ |
  | booleanArray | boolean[] | 是   | 要写入的布尔数组。 |
Z
zengyawen 已提交
1998

W
wanghaoxu 已提交
1999 2000
**错误码:**

C
crazy_hu 已提交
2001
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wangqinxiao 已提交
2002

W
wanghaoxu 已提交
2003 2004 2005
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900009 | write data to message sequence failed |
Z
zengyawen 已提交
2006

Y
yangguangzhao 已提交
2007
**示例:**
Y
yangguangzhao 已提交
2008

Y
Yippo 已提交
2009
  ```ts
W
wanghaoxu 已提交
2010 2011 2012 2013 2014 2015 2016
  let data = rpc.MessageSequence.create();
  try {
      data.writeBooleanArray([false, true, false]);
  } catch(error) {
      console.info("rpc write booleanArray fail, errorCode " + error.code);
      console.info("rpc write booleanArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
2017 2018 2019 2020
  ```

### readBooleanArray

C
crazy_hu 已提交
2021
readBooleanArray(dataIn: boolean[]): void
Z
zengyawen 已提交
2022

Y
Yippo 已提交
2023
从MessageSequence实例中读取布尔数组。
Z
zengyawen 已提交
2024

Y
yangguangzhao 已提交
2025
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
2026

W
wanghaoxu 已提交
2027
**参数:**
W
wangqinxiao 已提交
2028

W
wanghaoxu 已提交
2029 2030 2031 2032
  | 参数名 | 类型      | 必填 | 说明               |
  | ------ | --------- | ---- | ------------------ |
  | dataIn | boolean[] | 是   | 要读取的布尔数组。 |

W
wanghaoxu 已提交
2033 2034
**错误码:**

C
crazy_hu 已提交
2035
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
2036

W
wanghaoxu 已提交
2037 2038 2039
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900010 | read data from message sequence failed |
Z
zengyawen 已提交
2040

Y
yangguangzhao 已提交
2041
**示例:**
Y
yangguangzhao 已提交
2042

Y
Yippo 已提交
2043
  ```ts
W
wanghaoxu 已提交
2044 2045 2046 2047 2048 2049 2050
  let data = rpc.MessageSequence.create();
  try {
      data.writeBooleanArray([false, true, false]);
  } catch(error) {
      console.info("rpc write booleanArray fail, errorCode " + error.code);
      console.info("rpc write booleanArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
2051
  let array = new Array(3);
W
wanghaoxu 已提交
2052 2053 2054 2055 2056 2057
  try {
      data.readBooleanArray(array);
  } catch(error) {
      console.info("rpc read booleanArray fail, errorCode " + error.code);
      console.info("rpc read booleanArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
2058 2059 2060 2061 2062 2063
  ```

### readBooleanArray

readBooleanArray(): boolean[]

2064
从MessageSequence实例中读取所有布尔数组。
Z
zengyawen 已提交
2065

Y
yangguangzhao 已提交
2066
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
2067

Y
yangguangzhao 已提交
2068
**返回值:**
W
wangqinxiao 已提交
2069

W
wanghaoxu 已提交
2070 2071
  | 类型      | 说明           |
  | --------- | -------------- |
Y
yangguangzhao 已提交
2072 2073
  | boolean[] | 返回布尔数组。 |

W
wanghaoxu 已提交
2074 2075
**错误码:**

C
crazy_hu 已提交
2076
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
2077

W
wanghaoxu 已提交
2078 2079 2080
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900010 | read data from message sequence failed |
W
wanghaoxu 已提交
2081 2082

**示例:**
Z
zengyawen 已提交
2083

Y
Yippo 已提交
2084
  ```ts
W
wanghaoxu 已提交
2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098
  let data = rpc.MessageSequence.create();
  try {
      data.writeBooleanArray([false, true, false]);
  } catch(error) {
      console.info("rpc write booleanArray fail, errorCode " + error.code);
      console.info("rpc write booleanArray fail, errorMessage" + error.message);
  }
  try {
      let array = data.readBooleanArray();
      console.log("RpcClient: readBooleanArray is " + array);
  } catch(error) {
      console.info("rpc read booleanArray fail, errorCode " + error.code);
      console.info("rpc read booleanArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
2099 2100 2101 2102
  ```

### writeCharArray

W
wanghaoxu 已提交
2103
writeCharArray(charArray: number[]): void
Z
zengyawen 已提交
2104

W
wanghaoxu 已提交
2105
将单个字符数组写入MessageSequence实例。
Z
zengyawen 已提交
2106

Y
yangguangzhao 已提交
2107
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
2108

W
wanghaoxu 已提交
2109
**参数:**
W
wangqinxiao 已提交
2110

W
wanghaoxu 已提交
2111 2112 2113
  | 参数名    | 类型     | 必填 | 说明                   |
  | --------- | -------- | ---- | ---------------------- |
  | charArray | number[] | 是   | 要写入的单个字符数组。 |
Z
zengyawen 已提交
2114

W
wanghaoxu 已提交
2115 2116
**错误码:**

C
crazy_hu 已提交
2117
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wangqinxiao 已提交
2118

W
wanghaoxu 已提交
2119 2120 2121
  | 错误码ID | 错误信息 |
  | -------- | ------ |
  | 1900009 | write data to message sequence failed |
Z
zengyawen 已提交
2122

Y
yangguangzhao 已提交
2123
**示例:**
Y
yangguangzhao 已提交
2124

Y
Yippo 已提交
2125
  ```ts
W
wanghaoxu 已提交
2126 2127 2128 2129 2130 2131 2132
  let data = rpc.MessageSequence.create();
  try {
      data.writeCharArray([97, 98, 88]);
  } catch(error) {
      console.info("rpc write charArray fail, errorCode " + error.code);
      console.info("rpc write charArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
2133 2134 2135 2136
  ```

### readCharArray

C
crazy_hu 已提交
2137
readCharArray(dataIn: number[]): void
Z
zengyawen 已提交
2138

W
wanghaoxu 已提交
2139
从MessageSequence实例中读取单个字符数组。
Z
zengyawen 已提交
2140

Y
yangguangzhao 已提交
2141
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
2142

W
wanghaoxu 已提交
2143
**参数:**
W
wangqinxiao 已提交
2144

W
wanghaoxu 已提交
2145 2146 2147 2148
  | 参数名 | 类型     | 必填 | 说明                   |
  | ------ | -------- | ---- | ---------------------- |
  | dataIn | number[] | 是   | 要读取的单个字符数组。 |

W
wanghaoxu 已提交
2149 2150
**错误码:**

C
crazy_hu 已提交
2151
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
2152

W
wanghaoxu 已提交
2153 2154 2155
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900010 | read data from message sequence failed |
Z
zengyawen 已提交
2156

Y
yangguangzhao 已提交
2157
**示例:**
Y
yangguangzhao 已提交
2158

Y
Yippo 已提交
2159
  ```ts
W
wanghaoxu 已提交
2160 2161 2162 2163 2164 2165 2166
  let data = rpc.MessageSequence.create();
  try {
      data.writeCharArray([97, 98, 88]);
  } catch(error) {
      console.info("rpc write charArray fail, errorCode " + error.code);
      console.info("rpc write charArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
2167
  let array = new Array(3);
W
wanghaoxu 已提交
2168 2169 2170 2171 2172 2173
  try {
      data.readCharArray(array);
  } catch(error) {
      console.info("rpc read charArray fail, errorCode " + error.code);
      console.info("rpc read charArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
2174 2175 2176 2177
  ```

### readCharArray

Y
yangguangzhao 已提交
2178
readCharArray(): number[]
Z
zengyawen 已提交
2179

W
wanghaoxu 已提交
2180
从MessageSequence实例读取单个字符数组。
Z
zengyawen 已提交
2181

Y
yangguangzhao 已提交
2182
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
2183

Y
yangguangzhao 已提交
2184
**返回值:**
W
wangqinxiao 已提交
2185

W
wanghaoxu 已提交
2186 2187
  | 类型     | 说明               |
  | -------- | ------------------ |
Y
yangguangzhao 已提交
2188
  | number[] | 返回单个字符数组。 |
Z
zengyawen 已提交
2189

W
wanghaoxu 已提交
2190 2191
**错误码:**

C
crazy_hu 已提交
2192
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
2193

W
wanghaoxu 已提交
2194 2195 2196
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900010 | read data from message sequence failed |
W
wanghaoxu 已提交
2197

Y
yangguangzhao 已提交
2198
**示例:**
Y
yangguangzhao 已提交
2199

Y
Yippo 已提交
2200
  ```ts
W
wanghaoxu 已提交
2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215
  let data = rpc.MessageSequence.create();
  try {
      data.writeCharArray([97, 98, 88]);
  } catch(error) {
      console.info("rpc write charArray fail, errorCode " + error.code);
      console.info("rpc write charArray fail, errorMessage" + error.message);
  }
  let array = new Array(3);
  try {
      let array = data.readCharArray();
      console.log("RpcClient: readCharArray is " + array);
  } catch(error) {
      console.info("rpc read charArray fail, errorCode " + error.code);
      console.info("rpc read charArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
2216 2217 2218 2219
  ```

### writeStringArray

W
wanghaoxu 已提交
2220
writeStringArray(stringArray: string[]): void
Z
zengyawen 已提交
2221

W
wanghaoxu 已提交
2222
将字符串数组写入MessageSequence实例。
Z
zengyawen 已提交
2223

Y
yangguangzhao 已提交
2224
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
2225

W
wanghaoxu 已提交
2226
**参数:**
W
wangqinxiao 已提交
2227

W
wanghaoxu 已提交
2228 2229 2230
  | 参数名      | 类型     | 必填 | 说明                                                    |
  | ----------- | -------- | ---- | ------------------------------------------------------- |
  | stringArray | string[] | 是   | 要写入的字符串数组,数组单个元素的长度应小于40960字节。 |
Z
zengyawen 已提交
2231

W
wanghaoxu 已提交
2232 2233
**错误码:**

C
crazy_hu 已提交
2234
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wangqinxiao 已提交
2235

W
wanghaoxu 已提交
2236 2237 2238
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900009 | write data to message sequence failed |
Z
zengyawen 已提交
2239

Y
yangguangzhao 已提交
2240
**示例:**
Y
yangguangzhao 已提交
2241

Y
Yippo 已提交
2242
  ```ts
W
wanghaoxu 已提交
2243 2244 2245 2246 2247 2248 2249
  let data = rpc.MessageSequence.create();
  try {
      data.writeStringArray(["abc", "def"]);
  } catch(error) {
      console.info("rpc write stringArray fail, errorCode " + error.code);
      console.info("rpc write stringArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
2250 2251 2252 2253
  ```

### readStringArray

C
crazy_hu 已提交
2254
readStringArray(dataIn: string[]): void
Z
zengyawen 已提交
2255

W
wanghaoxu 已提交
2256
从MessageSequence实例读取字符串数组。
Z
zengyawen 已提交
2257

Y
yangguangzhao 已提交
2258
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
2259

W
wanghaoxu 已提交
2260
**参数:**
W
wangqinxiao 已提交
2261

W
wanghaoxu 已提交
2262 2263 2264 2265
  | 参数名 | 类型     | 必填 | 说明                 |
  | ------ | -------- | ---- | -------------------- |
  | dataIn | string[] | 是   | 要读取的字符串数组。 |

W
wanghaoxu 已提交
2266 2267
**错误码:**

C
crazy_hu 已提交
2268
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
2269

W
wanghaoxu 已提交
2270 2271 2272
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900010 | read data from message sequence failed |
Z
zengyawen 已提交
2273

Y
yangguangzhao 已提交
2274
**示例:**
Y
yangguangzhao 已提交
2275

Y
Yippo 已提交
2276
  ```ts
W
wanghaoxu 已提交
2277 2278 2279 2280 2281 2282 2283
  let data = rpc.MessageSequence.create();
  try {
      data.writeStringArray(["abc", "def"]);
  } catch(error) {
      console.info("rpc write stringArray fail, errorCode " + error.code);
      console.info("rpc write stringArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
2284
  let array = new Array(2);
W
wanghaoxu 已提交
2285 2286 2287 2288 2289 2290
  try {
      data.readStringArray(array);
  } catch(error) {
      console.info("rpc read stringArray fail, errorCode " + error.code);
      console.info("rpc read stringArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
2291 2292 2293 2294 2295 2296
  ```

### readStringArray

readStringArray(): string[]

W
wanghaoxu 已提交
2297
从MessageSequence实例读取字符串数组。
Z
zengyawen 已提交
2298

Y
yangguangzhao 已提交
2299
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
2300

Y
yangguangzhao 已提交
2301
**返回值:**
W
wangqinxiao 已提交
2302

W
wanghaoxu 已提交
2303 2304
  | 类型     | 说明             |
  | -------- | ---------------- |
Y
yangguangzhao 已提交
2305
  | string[] | 返回字符串数组。 |
Z
zengyawen 已提交
2306

W
wanghaoxu 已提交
2307 2308
**错误码:**

C
crazy_hu 已提交
2309
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
2310

W
wanghaoxu 已提交
2311 2312 2313
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900010 | read data from message sequence failed |
W
wanghaoxu 已提交
2314

Y
yangguangzhao 已提交
2315
**示例:**
Y
yangguangzhao 已提交
2316

Y
Yippo 已提交
2317
  ```ts
W
wanghaoxu 已提交
2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331
  let data = rpc.MessageSequence.create();
  try {
      data.writeStringArray(["abc", "def"]);
  } catch(error) {
      console.info("rpc write stringArray fail, errorCode " + error.code);
      console.info("rpc write stringArray fail, errorMessage" + error.message);
  }
  try {
      let array = data.readStringArray();
      console.log("RpcClient: readStringArray is " + array);
  } catch(error) {
      console.info("rpc read stringArray fail, errorCode " + error.code);
      console.info("rpc read stringArray fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
2332 2333
  ```

W
wanghaoxu 已提交
2334
### writeNoException
Z
zengyawen 已提交
2335 2336 2337

writeNoException(): void

W
wanghaoxu 已提交
2338
向MessageSequence写入“指示未发生异常”的信息。
Z
zengyawen 已提交
2339

Y
yangguangzhao 已提交
2340
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
2341

W
wanghaoxu 已提交
2342 2343
**错误码:**

C
crazy_hu 已提交
2344
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
2345

W
wanghaoxu 已提交
2346 2347 2348
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900009 | write data to message sequence failed |
W
wanghaoxu 已提交
2349

Y
yangguangzhao 已提交
2350
**示例:**
Y
yangguangzhao 已提交
2351

Y
Yippo 已提交
2352
  ```ts
Z
zengyawen 已提交
2353 2354 2355 2356
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
C
crazy_hu 已提交
2357

Z
zengyawen 已提交
2358 2359 2360
      onRemoteRequest(code, data, reply, option) {
          if (code === 1) {
              console.log("RpcServer: onRemoteRequest called");
W
wanghaoxu 已提交
2361 2362 2363 2364 2365 2366
              try {
                  reply.writeNoException();
              } catch(error) {
                  console.info("rpc write no exception fail, errorCode " + error.code);
                  console.info("rpc write no exception fail, errorMessage" + error.message);
              }
Z
zengyawen 已提交
2367 2368 2369 2370 2371 2372 2373 2374 2375
              return true;
          } else {
              console.log("RpcServer: unknown code: " + code);
              return false;
          }
      }
  }
  ```

W
wanghaoxu 已提交
2376
### readException
Z
zengyawen 已提交
2377 2378 2379

readException(): void

W
wanghaoxu 已提交
2380
从MessageSequence中读取异常。
Z
zengyawen 已提交
2381

Y
yangguangzhao 已提交
2382
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
2383

W
wanghaoxu 已提交
2384 2385
**错误码:**

C
crazy_hu 已提交
2386
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
2387

W
wanghaoxu 已提交
2388 2389 2390
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900010 | read data from message sequence failed |
W
wanghaoxu 已提交
2391

Y
yangguangzhao 已提交
2392
**示例:**
Y
yangguangzhao 已提交
2393

Y
Yippo 已提交
2394
  ```ts
Z
zengyawen 已提交
2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409
  import FA from "@ohos.ability.featureAbility";
  let proxy;
  let connect = {
      onConnect: function(elementName, remoteProxy) {
          console.log("RpcClient: js onConnect called.");
          proxy = remoteProxy;
      },
      onDisconnect: function(elementName) {
          console.log("RpcClient: onDisconnect");
      },
      onFailed: function() {
          console.log("RpcClient: onFailed");
      }
  };
  let want = {
Y
yangguangzhao 已提交
2410
      "bundleName": "com.ohos.server",
2411
      "abilityName": "com.ohos.server.EntryAbility",
Z
zengyawen 已提交
2412 2413 2414
  };
  FA.connectAbility(want, connect);
  let option = new rpc.MessageOption();
W
wanghaoxu 已提交
2415 2416
  let data = rpc.MessageSequence.create();
  let reply = rpc.MessageSequence.create();
Z
zengyawen 已提交
2417 2418
  data.writeInt(1);
  data.writeString("hello");
W
wanghaoxu 已提交
2419
  proxy.sendMessageRequest(1, data, reply, option)
Z
zengyawen 已提交
2420 2421
      .then(function(errCode) {
          if (errCode === 0) {
W
wanghaoxu 已提交
2422
              console.log("sendMessageRequest got result");
W
wanghaoxu 已提交
2423 2424 2425 2426 2427 2428
              try {
                  reply.readException();
              } catch(error) {
                  console.info("rpc read exception fail, errorCode " + error.code);
                  console.info("rpc read no exception fail, errorMessage" + error.message);
              }
Z
zengyawen 已提交
2429 2430 2431
              let msg = reply.readString();
              console.log("RPCTest: reply msg: " + msg);
          } else {
W
wanghaoxu 已提交
2432
              console.log("RPCTest: sendMessageRequest failed, errCode: " + errCode);
Z
zengyawen 已提交
2433 2434
          }
      }).catch(function(e) {
W
wanghaoxu 已提交
2435
          console.log("RPCTest: sendMessageRequest got exception: " + e.message);
Z
zengyawen 已提交
2436
      }).finally (() => {
W
wanghaoxu 已提交
2437
          console.log("RPCTest: sendMessageRequest ends, reclaim parcel");
Z
zengyawen 已提交
2438 2439 2440 2441 2442
          data.reclaim();
          reply.reclaim();
      });
  ```

W
wanghaoxu 已提交
2443
### writeParcelableArray
Z
zengyawen 已提交
2444

W
wanghaoxu 已提交
2445
writeParcelableArray(parcelableArray: Parcelable[]): void
Z
zengyawen 已提交
2446

W
wanghaoxu 已提交
2447
将可序列化对象数组写入MessageSequence实例。
Z
zengyawen 已提交
2448

Y
yangguangzhao 已提交
2449
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
2450

W
wanghaoxu 已提交
2451
**参数:**
W
wangqinxiao 已提交
2452

W
wanghaoxu 已提交
2453 2454 2455
  | 参数名          | 类型         | 必填 | 说明                       |
  | --------------- | ------------ | ---- | -------------------------- |
  | parcelableArray | Parcelable[] | 是   | 要写入的可序列化对象数组。 |
Z
zengyawen 已提交
2456

W
wanghaoxu 已提交
2457 2458
**错误码:**

C
crazy_hu 已提交
2459
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wangqinxiao 已提交
2460

W
wanghaoxu 已提交
2461 2462 2463
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900009 | write data to message sequence failed |
Z
zengyawen 已提交
2464

Y
yangguangzhao 已提交
2465
**示例:**
Y
yangguangzhao 已提交
2466

Y
Yippo 已提交
2467
  ```ts
W
wanghaoxu 已提交
2468
  class MyParcelable {
Y
yangguangzhao 已提交
2469 2470 2471
      num: number;
      str: string;
      constructor(num, str) {
Z
zengyawen 已提交
2472
          this.num = num;
Y
yangguangzhao 已提交
2473
          this.str = str;
Z
zengyawen 已提交
2474
      }
W
wanghaoxu 已提交
2475 2476 2477
      marshalling(messageSequence) {
          messageSequence.writeInt(this.num);
          messageSequence.writeString(this.str);
Z
zengyawen 已提交
2478 2479
          return true;
      }
W
wanghaoxu 已提交
2480 2481 2482
      unmarshalling(messageSequence) {
          this.num = messageSequence.readInt();
          this.str = messageSequence.readString();
Z
zengyawen 已提交
2483 2484 2485
          return true;
      }
  }
W
wanghaoxu 已提交
2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496
  let parcelable = new MyParcelable(1, "aaa");
  let parcelable2 = new MyParcelable(2, "bbb");
  let parcelable3 = new MyParcelable(3, "ccc");
  let a = [parcelable, parcelable2, parcelable3];
  let data = rpc.MessageSequence.create();
  try {
      data.writeParcelableArray(a);
  } catch(error) {
      console.info("rpc write parcelable array fail, errorCode " + error.code);
      console.info("rpc write parcelable array fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
2497 2498
  ```

W
wanghaoxu 已提交
2499
### readParcelableArray
Z
zengyawen 已提交
2500

W
wanghaoxu 已提交
2501
readParcelableArray(parcelableArray: Parcelable[]): void
Z
zengyawen 已提交
2502

W
wanghaoxu 已提交
2503
从MessageSequence实例读取可序列化对象数组。
Z
zengyawen 已提交
2504

Y
yangguangzhao 已提交
2505
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
2506

W
wanghaoxu 已提交
2507
**参数:**
W
wangqinxiao 已提交
2508

W
wanghaoxu 已提交
2509 2510 2511 2512
  | 参数名          | 类型         | 必填 | 说明                       |
  | --------------- | ------------ | ---- | -------------------------- |
  | parcelableArray | Parcelable[] | 是   | 要读取的可序列化对象数组。 |

W
wanghaoxu 已提交
2513 2514
**错误码:**

C
crazy_hu 已提交
2515
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
2516

W
wanghaoxu 已提交
2517 2518 2519 2520
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900010 | read data from message sequence failed |
  | 1900012 | call js callback function failed |
Z
zengyawen 已提交
2521

Y
yangguangzhao 已提交
2522
**示例:**
Y
yangguangzhao 已提交
2523

Y
Yippo 已提交
2524
  ```ts
W
wanghaoxu 已提交
2525
  class MyParcelable {
Y
yangguangzhao 已提交
2526 2527 2528
      num: number;
      str: string;
      constructor(num, str) {
Z
zengyawen 已提交
2529
          this.num = num;
Y
yangguangzhao 已提交
2530
          this.str = str;
Z
zengyawen 已提交
2531
      }
W
wanghaoxu 已提交
2532 2533 2534
      marshalling(messageSequence) {
          messageSequence.writeInt(this.num);
          messageSequence.writeString(this.str);
Z
zengyawen 已提交
2535 2536
          return true;
      }
W
wanghaoxu 已提交
2537 2538 2539
      unmarshalling(messageSequence) {
          this.num = messageSequence.readInt();
          this.str = messageSequence.readString();
Z
zengyawen 已提交
2540 2541 2542
          return true;
      }
  }
W
wanghaoxu 已提交
2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557
  let parcelable = new MyParcelable(1, "aaa");
  let parcelable2 = new MyParcelable(2, "bbb");
  let parcelable3 = new MyParcelable(3, "ccc");
  let a = [parcelable, parcelable2, parcelable3];
  let data = rpc.MessageSequence.create();
  let result = data.writeParcelableArray(a);
  console.log("RpcClient: writeParcelableArray is " + result);
  let b = [new MyParcelable(0, ""), new MyParcelable(0, ""), new MyParcelable(0, "")];
  try {
      data.readParcelableArray(b);
  } catch(error) {
      console.info("rpc read parcelable array fail, errorCode " + error.code);
      console.info("rpc read parcelable array fail, errorMessage" + error.message);
  }
  data.readParcelableArray(b);
Z
zengyawen 已提交
2558 2559
  ```

W
wanghaoxu 已提交
2560
### writeRemoteObjectArray
Z
zengyawen 已提交
2561

W
wanghaoxu 已提交
2562
writeRemoteObjectArray(objectArray: IRemoteObject[]): void
Z
zengyawen 已提交
2563

W
wanghaoxu 已提交
2564
将IRemoteObject对象数组写入MessageSequence。
Z
zengyawen 已提交
2565

Y
yangguangzhao 已提交
2566
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
2567

W
wanghaoxu 已提交
2568
**参数:**
C
crazy_hu 已提交
2569

W
wanghaoxu 已提交
2570 2571 2572
  | 参数名      | 类型            | 必填 | 说明                                           |
  | ----------- | --------------- | ---- | ---------------------------------------------- |
  | objectArray | IRemoteObject[] | 是   | 要写入MessageSequence的IRemoteObject对象数组。 |
Z
zengyawen 已提交
2573

W
wanghaoxu 已提交
2574 2575
**错误码:**

C
crazy_hu 已提交
2576
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wangqinxiao 已提交
2577

W
wanghaoxu 已提交
2578 2579 2580
  | 错误码ID | 错误信息 |
  | ------- | ------- |
  | 1900009 | write data to message sequence failed |
Z
zengyawen 已提交
2581

Y
yangguangzhao 已提交
2582
**示例:**
Y
yangguangzhao 已提交
2583

Y
Yippo 已提交
2584
  ```ts
Z
zengyawen 已提交
2585 2586 2587
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
W
wanghaoxu 已提交
2588
          this.modifyLocalInterface(this, descriptor);
Y
yangguangzhao 已提交
2589
      }
C
crazy_hu 已提交
2590

Y
yangguangzhao 已提交
2591 2592 2593
      asObject(): rpc.IRemoteObject {
          return this;
      }
Z
zengyawen 已提交
2594 2595
  }
  let a = [new TestRemoteObject("testObject1"), new TestRemoteObject("testObject2"), new TestRemoteObject("testObject3")];
W
wanghaoxu 已提交
2596
  let data = rpc.MessageSequence.create();
Z
zengyawen 已提交
2597
  let result = data.writeRemoteObjectArray(a);
W
wanghaoxu 已提交
2598 2599 2600 2601 2602 2603
  try {
      data.writeRemoteObjectArray(a);
  } catch(error) {
      console.info("rpc write remote object array fail, errorCode " + error.code);
      console.info("rpc write remote object array fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
2604 2605 2606
  console.log("RpcClient: writeRemoteObjectArray is " + result);
  ```

W
wanghaoxu 已提交
2607
### readRemoteObjectArray
Z
zengyawen 已提交
2608 2609 2610

readRemoteObjectArray(objects: IRemoteObject[]): void

W
wanghaoxu 已提交
2611
从MessageSequence读取IRemoteObject对象数组。
Z
zengyawen 已提交
2612

Y
yangguangzhao 已提交
2613
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
2614

W
wanghaoxu 已提交
2615
**参数:**
W
wangqinxiao 已提交
2616

W
wanghaoxu 已提交
2617 2618 2619 2620
  | 参数名  | 类型            | 必填 | 说明                                           |
  | ------- | --------------- | ---- | ---------------------------------------------- |
  | objects | IRemoteObject[] | 是   | 从MessageSequence读取的IRemoteObject对象数组。 |

W
wanghaoxu 已提交
2621 2622
**错误码:**

C
crazy_hu 已提交
2623
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
2624

W
wanghaoxu 已提交
2625 2626 2627
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900010 | read data from message sequence failed |
Z
zengyawen 已提交
2628

Y
yangguangzhao 已提交
2629
**示例:**
Y
yangguangzhao 已提交
2630

Y
Yippo 已提交
2631
  ```ts
Y
yangguangzhao 已提交
2632 2633
  class MyDeathRecipient {
      onRemoteDied() {
Y
yangguangzhao 已提交
2634
          console.log("server died");
Y
yangguangzhao 已提交
2635 2636
      }
  }
Z
zengyawen 已提交
2637 2638 2639
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
W
wanghaoxu 已提交
2640
          this.modifyLocalInterface(this, descriptor);
Y
yangguangzhao 已提交
2641
      }
C
crazy_hu 已提交
2642

Y
yangguangzhao 已提交
2643 2644 2645
      asObject(): rpc.IRemoteObject {
          return this;
      }
Z
zengyawen 已提交
2646 2647
  }
  let a = [new TestRemoteObject("testObject1"), new TestRemoteObject("testObject2"), new TestRemoteObject("testObject3")];
W
wanghaoxu 已提交
2648 2649
  let data = rpc.MessageSequence.create();
  data.writeRemoteObjectArray(a);
Z
zengyawen 已提交
2650
  let b = new Array(3);
W
wanghaoxu 已提交
2651 2652 2653 2654 2655 2656
  try {
      data.readRemoteObjectArray(b);
  } catch(error) {
      console.info("rpc read remote object array fail, errorCode " + error.code);
      console.info("rpc read remote object array fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
2657 2658 2659
  data.readRemoteObjectArray(b);
  ```

W
wanghaoxu 已提交
2660
### readRemoteObjectArray
Z
zengyawen 已提交
2661 2662 2663

readRemoteObjectArray(): IRemoteObject[]

W
wanghaoxu 已提交
2664
从MessageSequence读取IRemoteObject对象数组。
Z
zengyawen 已提交
2665

Y
yangguangzhao 已提交
2666
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
2667

Y
yangguangzhao 已提交
2668
**返回值:**
W
wangqinxiao 已提交
2669

W
wanghaoxu 已提交
2670 2671
  | 类型            | 说明                        |
  | --------------- | --------------------------- |
Y
yangguangzhao 已提交
2672
  | IRemoteObject[] | 返回IRemoteObject对象数组。 |
Z
zengyawen 已提交
2673

W
wanghaoxu 已提交
2674 2675
**错误码:**

C
crazy_hu 已提交
2676
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
2677

W
wanghaoxu 已提交
2678 2679 2680
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900010 | read data from message sequence failed |
W
wanghaoxu 已提交
2681

Y
yangguangzhao 已提交
2682
**示例:**
Y
yangguangzhao 已提交
2683

Y
Yippo 已提交
2684
  ```ts
Z
zengyawen 已提交
2685 2686 2687
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
W
wanghaoxu 已提交
2688
          this.modifyLocalInterface(this, descriptor);
Y
yangguangzhao 已提交
2689
      }
C
crazy_hu 已提交
2690
 
Y
yangguangzhao 已提交
2691 2692 2693
      asObject(): rpc.IRemoteObject {
          return this;
      }
Z
zengyawen 已提交
2694 2695
  }
  let a = [new TestRemoteObject("testObject1"), new TestRemoteObject("testObject2"), new TestRemoteObject("testObject3")];
W
wanghaoxu 已提交
2696 2697 2698 2699
  let data = rpc.MessageSequence.create();
  data.writeRemoteObjectArray(a);
  try {
      let b = data.readRemoteObjectArray();
C
crazy_hu 已提交
2700
      console.log("RpcClient: readRemoteObjectArray is " + b);
W
wanghaoxu 已提交
2701 2702 2703 2704
  } catch(error) {
      console.info("rpc read remote object array fail, errorCode " + error.code);
      console.info("rpc read remote object array fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
2705 2706 2707
  ```


C
crazy_hu 已提交
2708
### closeFileDescriptor<sup>9+</sup>
Z
zengyawen 已提交
2709 2710 2711

static closeFileDescriptor(fd: number): void

2712
静态方法,关闭给定的文件描述符。
Z
zengyawen 已提交
2713

Y
yangguangzhao 已提交
2714
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
2715

W
wanghaoxu 已提交
2716
**参数:**
W
wangqinxiao 已提交
2717

W
wanghaoxu 已提交
2718 2719 2720 2721
  | 参数名 | 类型   | 必填 | 说明                 |
  | ------ | ------ | ---- | -------------------- |
  | fd     | number | 是   | 要关闭的文件描述符。 |

Y
yangguangzhao 已提交
2722
**示例:**
Y
yangguangzhao 已提交
2723

Y
Yippo 已提交
2724
  ```ts
Z
zengyawen 已提交
2725 2726 2727
  import fileio from '@ohos.fileio';
  let filePath = "path/to/file";
  let fd = fileio.openSync(filePath, 0o2| 0o100, 0o666);
W
wanghaoxu 已提交
2728 2729 2730 2731 2732 2733
  try {
      rpc.MessageSequence.closeFileDescriptor(fd);
  } catch(error) {
      console.info("rpc close file descriptor fail, errorCode " + error.code);
      console.info("rpc close file descriptor fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
2734 2735
  ```

W
wanghaoxu 已提交
2736
### dupFileDescriptor
Z
zengyawen 已提交
2737 2738 2739

static dupFileDescriptor(fd: number) :number

2740
静态方法,复制给定的文件描述符。
Z
zengyawen 已提交
2741

Y
yangguangzhao 已提交
2742
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
2743

W
wanghaoxu 已提交
2744
**参数:**
W
wangqinxiao 已提交
2745

W
wanghaoxu 已提交
2746 2747 2748
  | 参数名 | 类型   | 必填 | 说明                     |
  | ------ | ------ | ---- | ------------------------ |
  | fd     | number | 是   | 表示已存在的文件描述符。 |
Z
zengyawen 已提交
2749

Y
yangguangzhao 已提交
2750
**返回值:**
W
wangqinxiao 已提交
2751

W
wanghaoxu 已提交
2752 2753
  | 类型   | 说明                 |
  | ------ | -------------------- |
Y
yangguangzhao 已提交
2754
  | number | 返回新的文件描述符。 |
Z
zengyawen 已提交
2755

W
wanghaoxu 已提交
2756 2757
**错误码:**

C
crazy_hu 已提交
2758
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
2759

W
wanghaoxu 已提交
2760 2761 2762
  | 错误码ID | 错误信息 |
  | ------- | ------- |
  | 1900013 | call os dup function failed |
W
wanghaoxu 已提交
2763

Y
yangguangzhao 已提交
2764
**示例:**
Y
yangguangzhao 已提交
2765

Y
Yippo 已提交
2766
  ```ts
Z
zengyawen 已提交
2767 2768 2769
  import fileio from '@ohos.fileio';
  let filePath = "path/to/file";
  let fd = fileio.openSync(filePath, 0o2| 0o100, 0o666);
W
wanghaoxu 已提交
2770 2771 2772 2773 2774 2775
  try {
      let newFd = rpc.MessageSequence.dupFileDescriptor(fd);
  } catch(error) {
      console.info("rpc dup file descriptor fail, errorCode " + error.code);
      console.info("rpc dup file descriptor fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
2776 2777
  ```

W
wanghaoxu 已提交
2778
### containFileDescriptors
Z
zengyawen 已提交
2779 2780 2781

containFileDescriptors(): boolean

W
wanghaoxu 已提交
2782
检查此MessageSequence对象是否包含文件描述符。
Z
zengyawen 已提交
2783

Y
yangguangzhao 已提交
2784
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
2785

Y
yangguangzhao 已提交
2786
**返回值:**
W
wangqinxiao 已提交
2787

W
wanghaoxu 已提交
2788 2789
  | 类型    | 说明                                                                 |
  | ------- | -------------------------------------------------------------------- |
2790
  | boolean | true:包含文件描述符,false:不包含文件描述符。|
Z
zengyawen 已提交
2791

Y
yangguangzhao 已提交
2792
**示例:**
Y
yangguangzhao 已提交
2793

W
wanghaoxu 已提交
2794

Y
Yippo 已提交
2795
  ```ts
Z
zengyawen 已提交
2796
  import fileio from '@ohos.fileio';
W
wanghaoxu 已提交
2797
  let sequence = new rpc.MessageSequence();
Z
zengyawen 已提交
2798
  let filePath = "path/to/file";
W
wanghaoxu 已提交
2799
  let r1 = sequence.containFileDescriptors();
Z
zengyawen 已提交
2800
  let fd = fileio.openSync(filePath, 0o2| 0o100, 0o666);
W
wanghaoxu 已提交
2801 2802 2803 2804 2805 2806 2807 2808
  try {
      sequence.writeFileDescriptor(fd);
  } catch(error) {
      console.info("rpc write file descriptor fail, errorCode " + error.code);
      console.info("rpc write file descriptor fail, errorMessage" + error.message);
  }
  try {
      let containFD = sequence.containFileDescriptors();
C
crazy_hu 已提交
2809
      console.log("RpcTest: sequence after write fd containFd result is : " + containFD);
W
wanghaoxu 已提交
2810 2811 2812 2813
  } catch(error) {
      console.info("rpc contain file descriptor fail, errorCode " + error.code);
      console.info("rpc contain file descriptor fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
2814 2815
  ```

W
wanghaoxu 已提交
2816
### writeFileDescriptor
Z
zengyawen 已提交
2817

W
wanghaoxu 已提交
2818
writeFileDescriptor(fd: number): void
Z
zengyawen 已提交
2819

W
wanghaoxu 已提交
2820
写入文件描述符到MessageSequence。
Z
zengyawen 已提交
2821

Y
yangguangzhao 已提交
2822
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
2823

W
wanghaoxu 已提交
2824
**参数:**
W
wangqinxiao 已提交
2825

W
wanghaoxu 已提交
2826 2827 2828
  | 参数名 | 类型   | 必填 | 说明         |
  | ------ | ------ | ---- | ------------ |
  | fd     | number | 是   | 文件描述符。 |
Z
zengyawen 已提交
2829

W
wanghaoxu 已提交
2830 2831
**错误码:**

C
crazy_hu 已提交
2832
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wangqinxiao 已提交
2833

W
wanghaoxu 已提交
2834 2835 2836
  | 错误码ID | 错误信息 |
  | -------- | ------ |
  | 1900009 | write data to message sequence failed |
Z
zengyawen 已提交
2837

Y
yangguangzhao 已提交
2838
**示例:**
Y
yangguangzhao 已提交
2839

Y
Yippo 已提交
2840
  ```ts
Z
zengyawen 已提交
2841
  import fileio from '@ohos.fileio';
W
wanghaoxu 已提交
2842
  let sequence = new rpc.MessageSequence();
Z
zengyawen 已提交
2843 2844
  let filePath = "path/to/file";
  let fd = fileio.openSync(filePath, 0o2| 0o100, 0o666);
W
wanghaoxu 已提交
2845 2846 2847 2848 2849 2850
  try {
      sequence.writeFileDescriptor(fd);
  } catch(error) {
      console.info("rpc write file descriptor fail, errorCode " + error.code);
      console.info("rpc write file descriptor fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
2851 2852
  ```

W
wanghaoxu 已提交
2853
### readFileDescriptor
Z
zengyawen 已提交
2854 2855 2856

readFileDescriptor(): number

W
wanghaoxu 已提交
2857
从MessageSequence中读取文件描述符。
Z
zengyawen 已提交
2858

Y
yangguangzhao 已提交
2859
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
2860

Y
yangguangzhao 已提交
2861
**返回值:**
W
wangqinxiao 已提交
2862

W
wanghaoxu 已提交
2863 2864
  | 类型   | 说明             |
  | ------ | ---------------- |
Y
yangguangzhao 已提交
2865
  | number | 返回文件描述符。 |
Z
zengyawen 已提交
2866

W
wanghaoxu 已提交
2867 2868
**错误码:**

C
crazy_hu 已提交
2869
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
2870

W
wanghaoxu 已提交
2871 2872 2873
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900010 | read data from message sequence failed |
W
wanghaoxu 已提交
2874

Y
yangguangzhao 已提交
2875
**示例:**
Y
yangguangzhao 已提交
2876

Y
Yippo 已提交
2877
  ```ts
Z
zengyawen 已提交
2878
  import fileio from '@ohos.fileio';
W
wanghaoxu 已提交
2879
  let sequence = new rpc.MessageSequence();
Z
zengyawen 已提交
2880 2881
  let filePath = "path/to/file";
  let fd = fileio.openSync(filePath, 0o2| 0o100, 0o666);
W
wanghaoxu 已提交
2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893
  try {
      sequence.writeFileDescriptor(fd);
  } catch(error) {
      console.info("rpc write file descriptor fail, errorCode " + error.code);
      console.info("rpc write file descriptor fail, errorMessage" + error.message);
  }
  try {
      let readFD = sequence.readFileDescriptor();
  } catch(error) {
      console.info("rpc read file descriptor fail, errorCode " + error.code);
      console.info("rpc read file descriptor fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
2894 2895
  ```

W
wanghaoxu 已提交
2896
### writeAshmem
Z
zengyawen 已提交
2897

W
wanghaoxu 已提交
2898
writeAshmem(ashmem: Ashmem): void
Z
zengyawen 已提交
2899

W
wanghaoxu 已提交
2900
将指定的匿名共享对象写入此MessageSequence。
Z
zengyawen 已提交
2901

Y
yangguangzhao 已提交
2902
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
2903

W
wanghaoxu 已提交
2904
**参数:**
W
wangqinxiao 已提交
2905

W
wanghaoxu 已提交
2906 2907 2908
  | 参数名 | 类型   | 必填 | 说明                                  |
  | ------ | ------ | ---- | ------------------------------------- |
  | ashmem | Ashmem | 是   | 要写入MessageSequence的匿名共享对象。 |
Z
zengyawen 已提交
2909

W
wanghaoxu 已提交
2910 2911
**错误码:**

C
crazy_hu 已提交
2912
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wangqinxiao 已提交
2913

W
wanghaoxu 已提交
2914 2915
  | 错误码ID | 错误信息 |
  | ------- | ------- |
C
crazy_hu 已提交
2916
  | 1900003 | write to ashmem failed |
Z
zengyawen 已提交
2917

Y
yangguangzhao 已提交
2918
**示例:**
Y
yangguangzhao 已提交
2919

Y
Yippo 已提交
2920
  ```ts
W
wanghaoxu 已提交
2921
  let sequence = new rpc.MessageSequence();
C
crazy_hu 已提交
2922
  let ashmem;
W
wanghaoxu 已提交
2923
  try {
C
crazy_hu 已提交
2924
      ashmem = rpc.Ashmem.create("ashmem", 1024);
W
wanghaoxu 已提交
2925 2926 2927 2928 2929 2930 2931 2932 2933 2934
  } catch(error) {
      console.info("rpc create ashmem fail, errorCode " + error.code);
      console.info("rpc creat ashmem fail, errorMessage" + error.message);
  }
  try {
      sequence.writeAshmem(ashmem);
  } catch(error) {
      console.info("rpc write ashmem fail, errorCode " + error.code);
      console.info("rpc write ashmem fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
2935 2936 2937
  ```


W
wanghaoxu 已提交
2938
### readAshmem
Z
zengyawen 已提交
2939 2940 2941

readAshmem(): Ashmem

W
wanghaoxu 已提交
2942
从MessageSequence读取匿名共享对象。
Z
zengyawen 已提交
2943

Y
yangguangzhao 已提交
2944
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
2945

Y
yangguangzhao 已提交
2946
**返回值:**
W
wangqinxiao 已提交
2947

W
wanghaoxu 已提交
2948 2949
  | 类型   | 说明               |
  | ------ | ------------------ |
Y
yangguangzhao 已提交
2950
  | Ashmem | 返回匿名共享对象。 |
Z
zengyawen 已提交
2951

W
wanghaoxu 已提交
2952 2953
**错误码:**

C
crazy_hu 已提交
2954
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
2955

W
wanghaoxu 已提交
2956 2957
  | 错误码ID | 错误信息 |
  | ------- | -------- |
C
crazy_hu 已提交
2958
  | 1900004 | read from ashmem failed |
W
wanghaoxu 已提交
2959

Y
yangguangzhao 已提交
2960
**示例:**
Y
yangguangzhao 已提交
2961

Y
Yippo 已提交
2962
  ```ts
W
wanghaoxu 已提交
2963
  let sequence = new rpc.MessageSequence();
C
crazy_hu 已提交
2964
  let ashmem;
W
wanghaoxu 已提交
2965
  try {
C
crazy_hu 已提交
2966
      ashmem = rpc.Ashmem.create("ashmem", 1024);
W
wanghaoxu 已提交
2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977
  } catch(error) {
      console.info("rpc create ashmem fail, errorCode " + error.code);
      console.info("rpc creat ashmem fail, errorMessage" + error.message);
  }
  try {
      sequence.writeAshmem(ashmem);
  } catch(error) {
      console.info("rpc write ashmem fail, errorCode " + error.code);
      console.info("rpc write ashmem fail, errorMessage" + error.message);
  }
  try {
C
crazy_hu 已提交
2978 2979
      let readAshmem = sequence.readAshmem();
      console.log("RpcTest: read ashmem to result is : " + readAshmem);
W
wanghaoxu 已提交
2980 2981 2982 2983
  } catch(error) {
      console.info("rpc read ashmem fail, errorCode " + error.code);
      console.info("rpc read ashmem fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
2984 2985
  ```

W
wanghaoxu 已提交
2986
### getRawDataCapacity
Z
zengyawen 已提交
2987 2988 2989

getRawDataCapacity(): number

W
wanghaoxu 已提交
2990
获取MessageSequence可以容纳的最大原始数据量。
Z
zengyawen 已提交
2991

Y
yangguangzhao 已提交
2992
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
2993

Y
yangguangzhao 已提交
2994
**返回值:**
W
wangqinxiao 已提交
2995

W
wanghaoxu 已提交
2996 2997 2998
  | 类型   | 说明                                                         |
  | ------ | ------------------------------------------------------------ |
  | number | 返回MessageSequence可以容纳的最大原始数据量,即128&nbsp;Mb。 |
Z
zengyawen 已提交
2999

Y
yangguangzhao 已提交
3000
**示例:**
Y
yangguangzhao 已提交
3001

Y
Yippo 已提交
3002
  ```ts
W
wanghaoxu 已提交
3003 3004 3005
  let sequence = new rpc.MessageSequence();
  let result = sequence.getRawDataCapacity();
  console.log("RpcTest: sequence get RawDataCapacity result is : " + result);
Z
zengyawen 已提交
3006 3007
  ```

W
wanghaoxu 已提交
3008
### writeRawData
Z
zengyawen 已提交
3009

W
wanghaoxu 已提交
3010
writeRawData(rawData: number[], size: number): void
Z
zengyawen 已提交
3011

W
wanghaoxu 已提交
3012
将原始数据写入MessageSequence对象。
Z
zengyawen 已提交
3013

Y
yangguangzhao 已提交
3014
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
3015

W
wanghaoxu 已提交
3016
**参数:**
W
wangqinxiao 已提交
3017

W
wanghaoxu 已提交
3018 3019 3020 3021
  | 参数名  | 类型     | 必填 | 说明                               |
  | ------- | -------- | ---- | ---------------------------------- |
  | rawData | number[] | 是   | 要写入的原始数据。                 |
  | size    | number   | 是   | 发送的原始数据大小,以字节为单位。 |
Z
zengyawen 已提交
3022

W
wanghaoxu 已提交
3023 3024
**错误码:**

C
crazy_hu 已提交
3025
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wangqinxiao 已提交
3026

W
wanghaoxu 已提交
3027 3028 3029
  | 错误码ID | 错误信息 |
  | ------- | ------ |
  | 1900009 | write data to message sequence failed |
Z
zengyawen 已提交
3030

Y
yangguangzhao 已提交
3031
**示例:**
Y
yangguangzhao 已提交
3032

Y
Yippo 已提交
3033
  ```ts
W
wanghaoxu 已提交
3034
  let sequence = new rpc.MessageSequence();
Y
yangguangzhao 已提交
3035
  let arr = [1, 2, 3, 4, 5];
W
wanghaoxu 已提交
3036 3037 3038 3039 3040 3041
  try {
      sequence.writeRawData(arr, arr.length);
  } catch(error) {
      console.info("rpc write rawdata fail, errorCode " + error.code);
      console.info("rpc write rawdata fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
3042 3043
  ```

W
wanghaoxu 已提交
3044
### readRawData
Z
zengyawen 已提交
3045 3046 3047

readRawData(size: number): number[]

W
wanghaoxu 已提交
3048
从MessageSequence读取原始数据。
Z
zengyawen 已提交
3049

Y
yangguangzhao 已提交
3050
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
3051

W
wanghaoxu 已提交
3052
**参数:**
W
wangqinxiao 已提交
3053

W
wanghaoxu 已提交
3054 3055 3056
  | 参数名 | 类型   | 必填 | 说明                     |
  | ------ | ------ | ---- | ------------------------ |
  | size   | number | 是   | 要读取的原始数据的大小。 |
Z
zengyawen 已提交
3057

Y
yangguangzhao 已提交
3058
**返回值:**
W
wangqinxiao 已提交
3059

W
wanghaoxu 已提交
3060 3061
  | 类型     | 说明                           |
  | -------- | ------------------------------ |
Y
yangguangzhao 已提交
3062
  | number[] | 返回原始数据(以字节为单位)。 |
Z
zengyawen 已提交
3063

W
wanghaoxu 已提交
3064 3065
**错误码:**

C
crazy_hu 已提交
3066
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
3067

W
wanghaoxu 已提交
3068 3069 3070
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900010 | read data from message sequence failed |
W
wanghaoxu 已提交
3071

Y
yangguangzhao 已提交
3072
**示例:**
Y
yangguangzhao 已提交
3073

Y
Yippo 已提交
3074
  ```ts
W
wanghaoxu 已提交
3075
  let sequence = new rpc.MessageSequence();
Y
yangguangzhao 已提交
3076
  let arr = [1, 2, 3, 4, 5];
W
wanghaoxu 已提交
3077 3078 3079 3080 3081 3082 3083 3084
  try {
      sequence.writeRawData(arr, arr.length);
  } catch(error) {
      console.info("rpc write rawdata fail, errorCode " + error.code);
      console.info("rpc write rawdata fail, errorMessage" + error.message);
  }
  try {
      let result = sequence.readRawData(5);
C
crazy_hu 已提交
3085
      console.log("RpcTest: sequence read raw data result is : " + result);
W
wanghaoxu 已提交
3086 3087 3088 3089
  } catch(error) {
      console.info("rpc read rawdata fail, errorCode " + error.code);
      console.info("rpc read rawdata fail, errorMessage" + error.message);
  }
Z
zengyawen 已提交
3090 3091
  ```

3092
## MessageParcel<sup>(deprecated)</sup>
Z
zengyawen 已提交
3093

3094 3095 3096
>从API version 9 开始不再维护,建议使用[MessageSequence](#messagesequence9)类替代。

在RPC过程中,发送方可以使用MessageParcel提供的写方法,将待发送的数据以特定格式写入该对象。接收方可以使用MessageParcel提供的读方法从该对象中读取特定格式的数据。数据格式包括:基础类型及数组、IPC对象、接口描述符和自定义序列化对象。
Z
zengyawen 已提交
3097

W
wanghaoxu 已提交
3098
### create
Z
zengyawen 已提交
3099

3100 3101
static create(): MessageParcel

W
wanghaoxu 已提交
3102
静态方法,创建MessageParcel对象。
Z
zengyawen 已提交
3103

Y
yangguangzhao 已提交
3104 3105
**系统能力**:SystemCapability.Communication.IPC.Core

Y
yangguangzhao 已提交
3106
**返回值:**
W
wangqinxiao 已提交
3107

W
wanghaoxu 已提交
3108 3109 3110
  | 类型          | 说明                          |
  | ------------- | ----------------------------- |
  | MessageParcel | 返回创建的MessageParcel对象。 |
Z
zengyawen 已提交
3111

Y
yangguangzhao 已提交
3112
**示例:**
Y
yangguangzhao 已提交
3113

Y
Yippo 已提交
3114
  ```ts
Z
zengyawen 已提交
3115
  let data = rpc.MessageParcel.create();
W
wanghaoxu 已提交
3116
  console.log("RpcClient: data is " + data);
Z
zengyawen 已提交
3117 3118
  ```

W
wanghaoxu 已提交
3119
### reclaim
Z
zengyawen 已提交
3120

W
wanghaoxu 已提交
3121
reclaim(): void
Z
zengyawen 已提交
3122

W
wanghaoxu 已提交
3123
释放不再使用的MessageParcel对象。
Z
zengyawen 已提交
3124

W
wanghaoxu 已提交
3125 3126 3127 3128
**系统能力**:SystemCapability.Communication.IPC.Core

**示例:**

Y
Yippo 已提交
3129
  ```ts
W
wanghaoxu 已提交
3130 3131 3132 3133 3134 3135 3136 3137 3138
  let reply = rpc.MessageParcel.create();
  reply.reclaim();
  ```

### writeRemoteObject

writeRemoteObject(object: [IRemoteObject](#iremoteobject)): boolean

序列化远程对象并将其写入MessageParcel对象。
Z
zengyawen 已提交
3139

Y
yangguangzhao 已提交
3140 3141
**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
3142
**参数:**
W
wangqinxiao 已提交
3143

W
wanghaoxu 已提交
3144 3145 3146
  | 参数名 | 类型                            | 必填 | 说明                                    |
  | ------ | ------------------------------- | ---- | --------------------------------------- |
  | object | [IRemoteObject](#iremoteobject) | 是   | 要序列化并写入MessageParcel的远程对象。 |
Z
zengyawen 已提交
3147

Y
yangguangzhao 已提交
3148
**返回值:**
W
wangqinxiao 已提交
3149

W
wanghaoxu 已提交
3150 3151
  | 类型    | 说明                                      |
  | ------- | ----------------------------------------- |
3152
  | boolean | true:操作成功,false:操作失败。|
Z
zengyawen 已提交
3153

Y
yangguangzhao 已提交
3154
**示例:**
Y
yangguangzhao 已提交
3155

Y
Yippo 已提交
3156
  ```ts
W
wanghaoxu 已提交
3157 3158 3159
  class MyDeathRecipient {
      onRemoteDied() {
          console.log("server died");
Z
zengyawen 已提交
3160
      }
W
wanghaoxu 已提交
3161 3162 3163 3164 3165 3166
  }
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
      addDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
Z
zengyawen 已提交
3167 3168
          return true;
      }
W
wanghaoxu 已提交
3169
      removeDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
Z
zengyawen 已提交
3170 3171
          return true;
      }
W
wanghaoxu 已提交
3172 3173 3174
      isObjectDead(): boolean {
          return false;
      }
Z
zengyawen 已提交
3175 3176
  }
  let data = rpc.MessageParcel.create();
W
wanghaoxu 已提交
3177 3178
  let testRemoteObject = new TestRemoteObject("testObject");
  data.writeRemoteObject(testRemoteObject);
Z
zengyawen 已提交
3179 3180
  ```

W
wanghaoxu 已提交
3181
### readRemoteObject
Z
zengyawen 已提交
3182

W
wanghaoxu 已提交
3183
readRemoteObject(): IRemoteObject
Z
zengyawen 已提交
3184

W
wanghaoxu 已提交
3185
从MessageParcel读取远程对象。此方法用于反序列化MessageParcel对象以生成IRemoteObject。远程对象按写入MessageParcel的顺序读取。
Z
zengyawen 已提交
3186

Y
yangguangzhao 已提交
3187 3188
**系统能力**:SystemCapability.Communication.IPC.Core

Y
yangguangzhao 已提交
3189
**返回值:**
W
wangqinxiao 已提交
3190

W
wanghaoxu 已提交
3191 3192 3193
  | 类型                            | 说明               |
  | ------------------------------- | ------------------ |
  | [IRemoteObject](#iremoteobject) | 读取到的远程对象。 |
Z
zengyawen 已提交
3194

Y
yangguangzhao 已提交
3195
**示例:**
Y
yangguangzhao 已提交
3196

Y
Yippo 已提交
3197
  ```ts
W
wanghaoxu 已提交
3198 3199 3200
  class MyDeathRecipient {
      onRemoteDied() {
          console.log("server died");
Z
zengyawen 已提交
3201 3202
      }
  }
W
wanghaoxu 已提交
3203 3204 3205
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
Z
zengyawen 已提交
3206
      }
W
wanghaoxu 已提交
3207 3208 3209 3210 3211 3212 3213 3214
      addDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      removeDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      isObjectDead(): boolean {
          return false;
Z
zengyawen 已提交
3215 3216
      }
  }
W
wanghaoxu 已提交
3217 3218 3219 3220
  let data = rpc.MessageParcel.create();
  let testRemoteObject = new TestRemoteObject("testObject");
  data.writeRemoteObject(testRemoteObject);
  let proxy = data.readRemoteObject();
Z
zengyawen 已提交
3221 3222
  ```

W
wanghaoxu 已提交
3223
### writeInterfaceToken
Z
zengyawen 已提交
3224

W
wanghaoxu 已提交
3225
writeInterfaceToken(token: string): boolean
Z
zengyawen 已提交
3226

W
wanghaoxu 已提交
3227
将接口描述符写入MessageParcel对象,远端对象可使用该信息校验本次通信。
Z
zengyawen 已提交
3228

W
wanghaoxu 已提交
3229
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
3230

W
wanghaoxu 已提交
3231
**参数:**
Z
zengyawen 已提交
3232

W
wanghaoxu 已提交
3233 3234 3235
  | 参数名 | 类型   | 必填 | 说明               |
  | ------ | ------ | ---- | ------------------ |
  | token  | string | 是   | 字符串类型描述符。 |
Z
zengyawen 已提交
3236

W
wanghaoxu 已提交
3237
**返回值:**
Z
zengyawen 已提交
3238

W
wanghaoxu 已提交
3239 3240
  | 类型    | 说明                                      |
  | ------- | ----------------------------------------- |
3241
  | boolean | true:操作成功,false:操作失败。|
Y
yangguangzhao 已提交
3242

Y
yangguangzhao 已提交
3243
**示例:**
Y
yangguangzhao 已提交
3244

Y
Yippo 已提交
3245
  ```ts
W
wanghaoxu 已提交
3246 3247 3248
  let data = rpc.MessageParcel.create();
  let result = data.writeInterfaceToken("aaa");
  console.log("RpcServer: writeInterfaceToken is " + result);
Z
zengyawen 已提交
3249 3250 3251
  ```


W
wanghaoxu 已提交
3252
### readInterfaceToken
Z
zengyawen 已提交
3253

W
wanghaoxu 已提交
3254
readInterfaceToken(): string
Y
yangguangzhao 已提交
3255

W
wanghaoxu 已提交
3256
从MessageParcel中读取接口描述符,接口描述符按写入MessageParcel的顺序读取,本地对象可使用该信息检验本次通信。
Z
zengyawen 已提交
3257

W
wanghaoxu 已提交
3258
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
3259

W
wanghaoxu 已提交
3260
**返回值:**
Z
zengyawen 已提交
3261

W
wanghaoxu 已提交
3262 3263 3264
  | 类型   | 说明                     |
  | ------ | ------------------------ |
  | string | 返回读取到的接口描述符。 |
Z
zengyawen 已提交
3265

W
wanghaoxu 已提交
3266
**示例:**
Z
zengyawen 已提交
3267

Y
Yippo 已提交
3268
  ```ts
W
wanghaoxu 已提交
3269
  class Stub extends rpc.RemoteObject {
3270
      onRemoteMessageRequest(code, data, reply, option) {
W
wanghaoxu 已提交
3271 3272 3273 3274 3275 3276
          let interfaceToken = data.readInterfaceToken();
          console.log("RpcServer: interfaceToken is " + interfaceToken);
          return true;
      }
  }
  ```
Z
zengyawen 已提交
3277

W
wanghaoxu 已提交
3278
### getSize
Z
zengyawen 已提交
3279

W
wanghaoxu 已提交
3280
getSize(): number
Y
yangguangzhao 已提交
3281

W
wanghaoxu 已提交
3282
获取当前MessageParcel的数据大小。
W
wangqinxiao 已提交
3283

W
wanghaoxu 已提交
3284
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
3285

Y
yangguangzhao 已提交
3286
**返回值:**
W
wangqinxiao 已提交
3287

W
wanghaoxu 已提交
3288 3289 3290
  | 类型   | 说明                                          |
  | ------ | --------------------------------------------- |
  | number | 获取的MessageParcel的数据大小。以字节为单位。 |
Z
zengyawen 已提交
3291

W
wanghaoxu 已提交
3292
**示例:**
Z
zengyawen 已提交
3293

Y
Yippo 已提交
3294
  ```ts
W
wanghaoxu 已提交
3295 3296 3297 3298
  let data = rpc.MessageParcel.create();
  let size = data.getSize();
  console.log("RpcClient: size is " + size);
  ```
W
wangqinxiao 已提交
3299

W
wanghaoxu 已提交
3300
### getCapacity
Z
zengyawen 已提交
3301

W
wanghaoxu 已提交
3302
getCapacity(): number
Y
yangguangzhao 已提交
3303

W
wanghaoxu 已提交
3304
获取当前MessageParcel的容量。
W
wangqinxiao 已提交
3305

W
wanghaoxu 已提交
3306
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
3307

Y
yangguangzhao 已提交
3308
**返回值:**
W
wangqinxiao 已提交
3309

W
wanghaoxu 已提交
3310 3311 3312
  | 类型   | 说明                                          |
  | ------ | --------------------------------------------- |
  | number | 获取的MessageParcel的容量大小。以字节为单位。 |
Z
zengyawen 已提交
3313

W
wanghaoxu 已提交
3314
**示例:**
Z
zengyawen 已提交
3315

Y
Yippo 已提交
3316
  ```ts
W
wanghaoxu 已提交
3317 3318 3319 3320
  let data = rpc.MessageParcel.create();
  let result = data.getCapacity();
  console.log("RpcClient: capacity is " + result);
  ```
3321

W
wanghaoxu 已提交
3322
### setSize
Z
zengyawen 已提交
3323

W
wanghaoxu 已提交
3324 3325 3326
setSize(size: number): boolean

设置MessageParcel实例中包含的数据大小。
Y
yangguangzhao 已提交
3327 3328 3329

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
3330
**参数:**
W
wangqinxiao 已提交
3331

W
wanghaoxu 已提交
3332 3333 3334
  | 参数名 | 类型   | 必填 | 说明                                        |
  | ------ | ------ | ---- | ------------------------------------------- |
  | size   | number | 是   | MessageParcel实例的数据大小。以字节为单位。 |
3335 3336

**返回值:**
W
wangqinxiao 已提交
3337

W
wanghaoxu 已提交
3338 3339
  | 类型    | 说明                              |
  | ------- | --------------------------------- |
3340
  | boolean | true:设置成功,false:设置失败。|
3341

W
wanghaoxu 已提交
3342
**示例:**
3343

Y
Yippo 已提交
3344
  ```ts
W
wanghaoxu 已提交
3345 3346 3347 3348
  let data = rpc.MessageParcel.create();
  let setSize = data.setSize(16);
  console.log("RpcClient: setSize is " + setSize);
  ```
3349

W
wanghaoxu 已提交
3350
### setCapacity
W
wangqinxiao 已提交
3351

W
wanghaoxu 已提交
3352
setCapacity(size: number): boolean
Y
yangguangzhao 已提交
3353

W
wanghaoxu 已提交
3354
设置MessageParcel实例的存储容量。
W
wangqinxiao 已提交
3355

W
wanghaoxu 已提交
3356
**系统能力**:SystemCapability.Communication.IPC.Core
Y
yangguangzhao 已提交
3357

W
wanghaoxu 已提交
3358
**参数:**
Y
yangguangzhao 已提交
3359

W
wanghaoxu 已提交
3360 3361 3362
  | 参数名 | 类型   | 必填 | 说明                                        |
  | ------ | ------ | ---- | ------------------------------------------- |
  | size   | number | 是   | MessageParcel实例的存储容量。以字节为单位。 |
Z
zengyawen 已提交
3363

W
wanghaoxu 已提交
3364
**返回值:**
Z
zengyawen 已提交
3365

W
wanghaoxu 已提交
3366 3367
  | 类型    | 说明                              |
  | ------- | --------------------------------- |
3368
  | boolean | true:设置成功,false:设置失败。|
Y
yangguangzhao 已提交
3369

W
wanghaoxu 已提交
3370
**示例:**
W
wangqinxiao 已提交
3371

Y
Yippo 已提交
3372
  ```ts
W
wanghaoxu 已提交
3373 3374 3375 3376
  let data = rpc.MessageParcel.create();
  let result = data.setCapacity(100);
  console.log("RpcClient: setCapacity is " + result);
  ```
Z
zengyawen 已提交
3377

W
wanghaoxu 已提交
3378
### getWritableBytes
Z
zengyawen 已提交
3379

W
wanghaoxu 已提交
3380
getWritableBytes(): number
Z
zengyawen 已提交
3381

W
wanghaoxu 已提交
3382
获取MessageParcel的可写字节空间。
Z
zengyawen 已提交
3383

Y
yangguangzhao 已提交
3384 3385
**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
3386
**返回值:**
W
wangqinxiao 已提交
3387

W
wanghaoxu 已提交
3388 3389 3390
  | 类型   | 说明                                                |
  | ------ | --------------------------------------------------- |
  | number | 获取到的MessageParcel的可写字节空间。以字节为单位。 |
Z
zengyawen 已提交
3391

W
wanghaoxu 已提交
3392
**示例:**
W
wangqinxiao 已提交
3393

Y
Yippo 已提交
3394
  ```ts
W
wanghaoxu 已提交
3395
  class Stub extends rpc.RemoteObject {
3396
      onRemoteMessageRequest(code, data, reply, option) {
W
wanghaoxu 已提交
3397 3398 3399 3400 3401 3402
          let getWritableBytes = data.getWritableBytes();
          console.log("RpcServer: getWritableBytes is " + getWritableBytes);
          return true;
      }
  }
  ```
Z
zengyawen 已提交
3403

W
wanghaoxu 已提交
3404
### getReadableBytes
Z
zengyawen 已提交
3405

W
wanghaoxu 已提交
3406
getReadableBytes(): number
Z
zengyawen 已提交
3407

W
wanghaoxu 已提交
3408
获取MessageParcel的可读字节空间。
Z
zengyawen 已提交
3409

Y
yangguangzhao 已提交
3410 3411
**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
3412
**返回值:**
W
wangqinxiao 已提交
3413

W
wanghaoxu 已提交
3414 3415 3416
  | 类型   | 说明                                                |
  | ------ | --------------------------------------------------- |
  | number | 获取到的MessageParcel的可读字节空间。以字节为单位。 |
Z
zengyawen 已提交
3417

W
wanghaoxu 已提交
3418
**示例:**
W
wangqinxiao 已提交
3419

Y
Yippo 已提交
3420
  ```ts
W
wanghaoxu 已提交
3421 3422 3423 3424 3425 3426 3427 3428
  class Stub extends rpc.RemoteObject {
      onRemoteRequest(code, data, reply, option) {
          let result = data.getReadableBytes();
          console.log("RpcServer: getReadableBytes is " + result);
          return true;
      }
  }
  ```
Z
zengyawen 已提交
3429

W
wanghaoxu 已提交
3430
### getReadPosition
Z
zengyawen 已提交
3431

W
wanghaoxu 已提交
3432
getReadPosition(): number
Z
zengyawen 已提交
3433

W
wanghaoxu 已提交
3434
获取MessageParcel的读位置。
Z
zengyawen 已提交
3435

Y
yangguangzhao 已提交
3436 3437
**系统能力**:SystemCapability.Communication.IPC.Core

Y
yangguangzhao 已提交
3438
**返回值:**
W
wangqinxiao 已提交
3439

W
wanghaoxu 已提交
3440 3441 3442
  | 类型   | 说明                                    |
  | ------ | --------------------------------------- |
  | number | 返回MessageParcel实例中的当前读取位置。 |
Z
zengyawen 已提交
3443

W
wanghaoxu 已提交
3444
**示例:**
Z
zengyawen 已提交
3445

Y
Yippo 已提交
3446
  ```ts
W
wanghaoxu 已提交
3447 3448 3449 3450
  let data = rpc.MessageParcel.create();
  let readPos = data.getReadPosition();
  console.log("RpcClient: readPos is " + readPos);
  ```
Z
zengyawen 已提交
3451

W
wanghaoxu 已提交
3452 3453 3454 3455 3456
### getWritePosition

getWritePosition(): number

获取MessageParcel的写位置。
Z
zengyawen 已提交
3457

Y
yangguangzhao 已提交
3458 3459
**系统能力**:SystemCapability.Communication.IPC.Core

Y
yangguangzhao 已提交
3460
**返回值:**
W
wangqinxiao 已提交
3461

W
wanghaoxu 已提交
3462 3463 3464
  | 类型   | 说明                                    |
  | ------ | --------------------------------------- |
  | number | 返回MessageParcel实例中的当前写入位置。 |
Z
zengyawen 已提交
3465

W
wanghaoxu 已提交
3466
**示例:**
Z
zengyawen 已提交
3467

Y
Yippo 已提交
3468
  ```ts
W
wanghaoxu 已提交
3469 3470 3471 3472 3473
  let data = rpc.MessageParcel.create();
  data.writeInt(10);
  let bwPos = data.getWritePosition();
  console.log("RpcClient: bwPos is " + bwPos);
  ```
Z
zengyawen 已提交
3474

W
wanghaoxu 已提交
3475
### rewindRead
Y
yangguangzhao 已提交
3476

W
wanghaoxu 已提交
3477
rewindRead(pos: number): boolean
Y
yangguangzhao 已提交
3478

W
wanghaoxu 已提交
3479
重新偏移读取位置到指定的位置。
Y
yangguangzhao 已提交
3480

W
wanghaoxu 已提交
3481
**系统能力**:SystemCapability.Communication.IPC.Core
Y
yangguangzhao 已提交
3482

W
wanghaoxu 已提交
3483
**参数:**
Z
zengyawen 已提交
3484

W
wanghaoxu 已提交
3485 3486 3487
  | 参数名 | 类型   | 必填 | 说明                     |
  | ------ | ------ | ---- | ------------------------ |
  | pos    | number | 是   | 开始读取数据的目标位置。 |
Z
zengyawen 已提交
3488

W
wanghaoxu 已提交
3489
**返回值:**
W
wangqinxiao 已提交
3490

W
wanghaoxu 已提交
3491 3492
  | 类型    | 说明                                              |
  | ------- | ------------------------------------------------- |
3493
  | boolean | true:读取位置发生更改,false:读取位置未发生更改。|
Z
zengyawen 已提交
3494

W
wanghaoxu 已提交
3495 3496
**示例:**

Y
Yippo 已提交
3497
  ```ts
W
wanghaoxu 已提交
3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515
  let data = rpc.MessageParcel.create();
  data.writeInt(12);
  data.writeString("parcel");
  let number = data.readInt();
  console.log("RpcClient: number is " + number);
  data.rewindRead(0);
  let number2 = data.readInt();
  console.log("RpcClient: rewindRead is " + number2);
  ```

### rewindWrite

rewindWrite(pos: number): boolean

重新偏移写位置到指定的位置。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
3516
**参数:**
W
wanghaoxu 已提交
3517 3518 3519 3520 3521 3522 3523 3524 3525

  | 参数名 | 类型   | 必填 | 说明                     |
  | ------ | ------ | ---- | ------------------------ |
  | pos    | number | 是   | 开始写入数据的目标位置。 |

**返回值:**

  | 类型    | 说明                                          |
  | ------- | --------------------------------------------- |
3526
  | boolean | true:写入位置发生更改,false:写入位置未发生更改。|
W
wanghaoxu 已提交
3527 3528 3529

**示例:**

Y
Yippo 已提交
3530
  ```ts
W
wanghaoxu 已提交
3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546
  let data = rpc.MessageParcel.create();
  data.writeInt(4);
  data.rewindWrite(0);
  data.writeInt(5);
  let number = data.readInt();
  console.log("RpcClient: rewindWrite is: " + number);
  ```

### writeByte

writeByte(val: number): boolean

将字节值写入MessageParcel实例。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
3547
**参数:**
W
wanghaoxu 已提交
3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560

  | 参数名 | 类型   | 必填 | 说明             |
  | ------ | ------ | ---- | ---------------- |
  | val    | number | 是   | 要写入的字节值。 |

**返回值:**

  | 类型    | 说明                          |
  | ------- | ----------------------------- |
  | boolean | 写入返回成功,否则返回false。 |

**示例:**

Y
Yippo 已提交
3561
  ```ts
W
wanghaoxu 已提交
3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582
  let data = rpc.MessageParcel.create();
  let result = data.writeByte(2);
  console.log("RpcClient: writeByte is: " + result);
  ```

### readByte

readByte(): number

从MessageParcel实例读取字节值。

**系统能力**:SystemCapability.Communication.IPC.Core

**返回值:**

  | 类型   | 说明         |
  | ------ | ------------ |
  | number | 返回字节值。 |

**示例:**

Y
Yippo 已提交
3583
  ```ts
W
wanghaoxu 已提交
3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598
  let data = rpc.MessageParcel.create();
  let result = data.writeByte(2);
  console.log("RpcClient: writeByte is: " + result);
  let ret = data.readByte();
  console.log("RpcClient: readByte is: " + ret);
  ```

### writeShort

writeShort(val: number): boolean

将短整数值写入MessageParcel实例。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
3599
**参数:**
W
wanghaoxu 已提交
3600 3601 3602 3603 3604 3605 3606 3607 3608

  | 参数名 | 类型   | 必填 | 说明               |
  | ------ | ------ | ---- | ------------------ |
  | val    | number | 是   | 要写入的短整数值。 |

**返回值:**

  | 类型    | 说明                          |
  | ------- | ----------------------------- |
3609
  | boolean | true:写入成功,false:写入失败。|
W
wanghaoxu 已提交
3610 3611 3612

**示例:**

Y
Yippo 已提交
3613
  ```ts
W
wanghaoxu 已提交
3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634
  let data = rpc.MessageParcel.create();
  let result = data.writeShort(8);
  console.log("RpcClient: writeShort is: " + result);
  ```

### readShort

readShort(): number

从MessageParcel实例读取短整数值。

**系统能力**:SystemCapability.Communication.IPC.Core

**返回值:**

  | 类型   | 说明           |
  | ------ | -------------- |
  | number | 返回短整数值。 |

**示例:**

Y
Yippo 已提交
3635
  ```ts
W
wanghaoxu 已提交
3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650
  let data = rpc.MessageParcel.create();
  let result = data.writeShort(8);
  console.log("RpcClient: writeShort is: " + result);
  let ret = data.readShort();
  console.log("RpcClient: readShort is: " + ret);
  ```

### writeInt

writeInt(val: number): boolean

将整数值写入MessageParcel实例。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
3651
**参数:**
W
wanghaoxu 已提交
3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664

  | 参数名 | 类型   | 必填 | 说明             |
  | ------ | ------ | ---- | ---------------- |
  | val    | number | 是   | 要写入的整数值。 |

**返回值:**

  | 类型    | 说明                          |
  | ------- | ----------------------------- |
  | boolean | 写入返回成功,否则返回false。 |

**示例:**

Y
Yippo 已提交
3665
  ```ts
W
wanghaoxu 已提交
3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686
  let data = rpc.MessageParcel.create();
  let result = data.writeInt(10);
  console.log("RpcClient: writeInt is " + result);
  ```

### readInt

readInt(): number

从MessageParcel实例读取整数值。

**系统能力**:SystemCapability.Communication.IPC.Core

**返回值:**

  | 类型   | 说明         |
  | ------ | ------------ |
  | number | 返回整数值。 |

**示例:**

Y
Yippo 已提交
3687
  ```ts
W
wanghaoxu 已提交
3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702
  let data = rpc.MessageParcel.create();
  let result = data.writeInt(10);
  console.log("RpcClient: writeInt is " + result);
  let ret = data.readInt();
  console.log("RpcClient: readInt is " + ret);
  ```

### writeLong

writeLong(val: number): boolean

将长整数值写入MessageParcel实例。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
3703
**参数:**
W
wanghaoxu 已提交
3704 3705 3706 3707 3708 3709 3710 3711 3712

  | 参数名 | 类型   | 必填 | 说明             |
  | ------ | ------ | ---- | ---------------- |
  | val    | number | 是   | 要写入的长整数值 |

**返回值:**

  | 类型    | 说明                              |
  | ------- | --------------------------------- |
3713
  | boolean | true:写入成功,false:写入失败。|
W
wanghaoxu 已提交
3714 3715 3716

**示例:**

Y
Yippo 已提交
3717
  ```ts
W
wanghaoxu 已提交
3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738
  let data = rpc.MessageParcel.create();
  let result = data.writeLong(10000);
  console.log("RpcClient: writeLong is " + result);
  ```

### readLong

readLong(): number

从MessageParcel实例中读取长整数值。

**系统能力**:SystemCapability.Communication.IPC.Core

**返回值:**

  | 类型   | 说明           |
  | ------ | -------------- |
  | number | 返回长整数值。 |

**示例:**

Y
Yippo 已提交
3739
  ```ts
W
wanghaoxu 已提交
3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754
  let data = rpc.MessageParcel.create();
  let result = data.writeLong(10000);
  console.log("RpcClient: writeLong is " + result);
  let ret = data.readLong();
  console.log("RpcClient: readLong is " + ret);
  ```

### writeFloat

writeFloat(val: number): boolean

将浮点值写入MessageParcel实例。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
3755
**参数:**
W
wanghaoxu 已提交
3756 3757 3758 3759 3760 3761 3762 3763 3764

  | 参数名 | 类型   | 必填 | 说明             |
  | ------ | ------ | ---- | ---------------- |
  | val    | number | 是   | 要写入的浮点值。 |

**返回值:**

  | 类型    | 说明                              |
  | ------- | --------------------------------- |
3765
  | boolean | true:写入成功,false:写入失败。|
W
wanghaoxu 已提交
3766 3767 3768

**示例:**

Y
Yippo 已提交
3769
  ```ts
W
wanghaoxu 已提交
3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790
  let data = rpc.MessageParcel.create();
  let result = data.writeFloat(1.2);
  console.log("RpcClient: writeFloat is " + result);
  ```

### readFloat

readFloat(): number

从MessageParcel实例中读取浮点值。

**系统能力**:SystemCapability.Communication.IPC.Core

**返回值:**

  | 类型   | 说明         |
  | ------ | ------------ |
  | number | 返回浮点值。 |

**示例:**

Y
Yippo 已提交
3791
  ```ts
W
wanghaoxu 已提交
3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806
  let data = rpc.MessageParcel.create();
  let result = data.writeFloat(1.2);
  console.log("RpcClient: writeFloat is " + result);
  let ret = data.readFloat();
  console.log("RpcClient: readFloat is " + ret);
  ```

### writeDouble

writeDouble(val: number): boolean

将双精度浮点值写入MessageParcel实例。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
3807
**参数:**
W
wanghaoxu 已提交
3808 3809 3810 3811 3812 3813 3814 3815 3816

  | 参数名 | 类型   | 必填 | 说明                   |
  | ------ | ------ | ---- | ---------------------- |
  | val    | number | 是   | 要写入的双精度浮点值。 |

**返回值:**

  | 类型    | 说明                              |
  | ------- | --------------------------------- |
3817
  | boolean | true:写入成功,false:写入失败。|
W
wanghaoxu 已提交
3818 3819 3820

**示例:**

Y
Yippo 已提交
3821
  ```ts
W
wanghaoxu 已提交
3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842
  let data = rpc.MessageParcel.create();
  let result = data.writeDouble(10.2);
  console.log("RpcClient: writeDouble is " + result);
  ```

### readDouble

readDouble(): number

从MessageParcel实例读取双精度浮点值。

**系统能力**:SystemCapability.Communication.IPC.Core

**返回值:**

  | 类型   | 说明               |
  | ------ | ------------------ |
  | number | 返回双精度浮点值。 |

**示例:**

Y
Yippo 已提交
3843
  ```ts
W
wanghaoxu 已提交
3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858
  let data = rpc.MessageParcel.create();
  let result = data.writeDouble(10.2);
  console.log("RpcClient: writeDouble is " + result);
  let ret = data.readDouble();
  console.log("RpcClient: readDouble is " + ret);
  ```

### writeBoolean

writeBoolean(val: boolean): boolean

将布尔值写入MessageParcel实例。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
3859
**参数:**
W
wanghaoxu 已提交
3860 3861 3862 3863 3864 3865 3866 3867 3868

  | 参数名 | 类型    | 必填 | 说明             |
  | ------ | ------- | ---- | ---------------- |
  | val    | boolean | 是   | 要写入的布尔值。 |

**返回值:**

  | 类型    | 说明                              |
  | ------- | --------------------------------- |
3869
  | boolean | true:写入成功,false:写入失败。|
W
wanghaoxu 已提交
3870 3871 3872

**示例:**

Y
Yippo 已提交
3873
  ```ts
W
wanghaoxu 已提交
3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894
  let data = rpc.MessageParcel.create();
  let result = data.writeBoolean(false);
  console.log("RpcClient: writeBoolean is " + result);
  ```

### readBoolean

readBoolean(): boolean

从MessageParcel实例读取布尔值。

**系统能力**:SystemCapability.Communication.IPC.Core

**返回值:**

  | 类型    | 说明                 |
  | ------- | -------------------- |
  | boolean | 返回读取到的布尔值。 |

**示例:**

Y
Yippo 已提交
3895
  ```ts
W
wanghaoxu 已提交
3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910
  let data = rpc.MessageParcel.create();
  let result = data.writeBoolean(false);
  console.log("RpcClient: writeBoolean is " + result);
  let ret = data.readBoolean();
  console.log("RpcClient: readBoolean is " + ret);
  ```

### writeChar

writeChar(val: number): boolean

将单个字符值写入MessageParcel实例。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
3911
**参数:**
W
wanghaoxu 已提交
3912 3913 3914 3915 3916 3917 3918 3919 3920

  | 参数名 | 类型   | 必填 | 说明                 |
  | ------ | ------ | ---- | -------------------- |
  | val    | number | 是   | 要写入的单个字符值。 |

**返回值:**

  | 类型    | 说明                          |
  | ------- | ----------------------------- |
3921
  | boolean | true:写入成功,false:写入失败。|
W
wanghaoxu 已提交
3922 3923 3924

**示例:**

Y
Yippo 已提交
3925
  ```ts
W
wanghaoxu 已提交
3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946
  let data = rpc.MessageParcel.create();
  let result = data.writeChar(97);
  console.log("RpcClient: writeChar is " + result);
  ```

### readChar

readChar(): number

从MessageParcel实例中读取单个字符值。

**系统能力**:SystemCapability.Communication.IPC.Core

**返回值:**

  | 类型   | 说明             |
  | ------ | ---------------- |
  | number | 返回单个字符值。 |

**示例:**

Y
Yippo 已提交
3947
  ```ts
W
wanghaoxu 已提交
3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961
  let data = rpc.MessageParcel.create();
  let result = data.writeChar(97);
  console.log("RpcClient: writeChar is " + result);
  let ret = data.readChar();
  console.log("RpcClient: readChar is " + ret);
  ```

### writeString

writeString(val: string): boolean

将字符串值写入MessageParcel实例。

**系统能力**:SystemCapability.Communication.IPC.Core
3962

W
wanghaoxu 已提交
3963
**参数:**
3964

W
wanghaoxu 已提交
3965 3966 3967 3968 3969 3970 3971 3972
  | 参数名 | 类型   | 必填 | 说明                                      |
  | ------ | ------ | ---- | ----------------------------------------- |
  | val    | string | 是   | 要写入的字符串值,其长度应小于40960字节。 |

**返回值:**

  | 类型    | 说明                              |
  | ------- | --------------------------------- |
3973
  | boolean | true:写入成功,false:写入失败。|
W
wanghaoxu 已提交
3974 3975 3976

**示例:**

Y
Yippo 已提交
3977
  ```ts
W
wanghaoxu 已提交
3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998
  let data = rpc.MessageParcel.create();
  let result = data.writeString('abc');
  console.log("RpcClient: writeString  is " + result);
  ```

### readString

readString(): string

从MessageParcel实例读取字符串值。

**系统能力**:SystemCapability.Communication.IPC.Core

**返回值:**

  | 类型   | 说明           |
  | ------ | -------------- |
  | string | 返回字符串值。 |

**示例:**

Y
Yippo 已提交
3999
  ```ts
W
wanghaoxu 已提交
4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014
  let data = rpc.MessageParcel.create();
  let result = data.writeString('abc');
  console.log("RpcClient: writeString  is " + result);
  let ret = data.readString();
  console.log("RpcClient: readString is " + ret);
  ```

### writeSequenceable

writeSequenceable(val: Sequenceable): boolean

将自定义序列化对象写入MessageParcel实例。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
4015
**参数:**
W
wanghaoxu 已提交
4016 4017 4018 4019 4020 4021 4022 4023 4024

  | 参数名 | 类型                          | 必填 | 说明                 |
  | ------ | ----------------------------- | ---- | -------------------- |
  | val    | [Sequenceable](#sequenceable) | 是   | 要写入的可序列对象。 |

**返回值:**

  | 类型    | 说明                              |
  | ------- | --------------------------------- |
4025
  | boolean | true:写入成功,false:写入失败。|
W
wanghaoxu 已提交
4026 4027 4028

**示例:**

Y
Yippo 已提交
4029
  ```ts
W
wanghaoxu 已提交
4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055
  class MySequenceable {
      num: number;
      str: string;
      constructor(num, str) {
          this.num = num;
          this.str = str;
      }
      marshalling(messageParcel) {
          messageParcel.writeInt(this.num);
          messageParcel.writeString(this.str);
          return true;
      }
      unmarshalling(messageParcel) {
          this.num = messageParcel.readInt();
          this.str = messageParcel.readString();
          return true;
      }
  }
  let sequenceable = new MySequenceable(1, "aaa");
  let data = rpc.MessageParcel.create();
  let result = data.writeSequenceable(sequenceable);
  console.log("RpcClient: writeSequenceable is " + result);
  ```

### readSequenceable

C
crazy_hu 已提交
4056
readSequenceable(dataIn: Sequenceable): boolean
W
wanghaoxu 已提交
4057 4058 4059 4060 4061

从MessageParcel实例中读取成员变量到指定的对象(dataIn)。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
4062
**参数:**
W
wanghaoxu 已提交
4063 4064 4065

  | 参数名 | 类型                          | 必填 | 说明                                    |
  | ------ | ----------------------------- | ---- | --------------------------------------- |
4066
  | dataIn | [Sequenceable](#sequenceabledeprecated) | 是   | 需要从MessageParcel读取成员变量的对象。 |
W
wanghaoxu 已提交
4067 4068 4069 4070 4071

**返回值:**

  | 类型    | 说明                                        |
  | ------- | ------------------------------------------- |
4072
  | boolean | true:反序列化成功,false:反序列化失败。|
W
wanghaoxu 已提交
4073 4074 4075

**示例:**

Y
Yippo 已提交
4076
  ```ts
W
wanghaoxu 已提交
4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111
  class MySequenceable {
      num: number;
      str: string;
      constructor(num, str) {
          this.num = num;
          this.str = str;
      }
      marshalling(messageParcel) {
          messageParcel.writeInt(this.num);
          messageParcel.writeString(this.str);
          return true;
      }
      unmarshalling(messageParcel) {
          this.num = messageParcel.readInt();
          this.str = messageParcel.readString();
          return true;
      }
  }
  let sequenceable = new MySequenceable(1, "aaa");
  let data = rpc.MessageParcel.create();
  let result = data.writeSequenceable(sequenceable);
  console.log("RpcClient: writeSequenceable is " + result);
  let ret = new MySequenceable(0, "");
  let result2 = data.readSequenceable(ret);
  console.log("RpcClient: writeSequenceable is " + result2);
  ```

### writeByteArray

writeByteArray(byteArray: number[]): boolean

将字节数组写入MessageParcel实例。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
4112
**参数:**
W
wanghaoxu 已提交
4113 4114 4115 4116 4117 4118 4119 4120 4121

  | 参数名    | 类型     | 必填 | 说明               |
  | --------- | -------- | ---- | ------------------ |
  | byteArray | number[] | 是   | 要写入的字节数组。 |

**返回值:**

  | 类型    | 说明                              |
  | ------- | --------------------------------- |
4122
  | boolean | true:写入成功,false:写入失败。|
W
wanghaoxu 已提交
4123 4124 4125

**示例:**

Y
Yippo 已提交
4126
  ```ts
W
wanghaoxu 已提交
4127 4128 4129 4130 4131 4132 4133 4134
  let data = rpc.MessageParcel.create();
  let ByteArrayVar = [1, 2, 3, 4, 5];
  let result = data.writeByteArray(ByteArrayVar);
  console.log("RpcClient: writeByteArray is " + result);
  ```

### readByteArray

C
crazy_hu 已提交
4135
readByteArray(dataIn: number[]): void
W
wanghaoxu 已提交
4136 4137 4138 4139 4140

从MessageParcel实例读取字节数组。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
4141
**参数:**
W
wanghaoxu 已提交
4142 4143 4144 4145 4146 4147 4148

  | 参数名 | 类型     | 必填 | 说明               |
  | ------ | -------- | ---- | ------------------ |
  | dataIn | number[] | 是   | 要读取的字节数组。 |

**示例:**

Y
Yippo 已提交
4149
  ```ts
W
wanghaoxu 已提交
4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173
  let data = rpc.MessageParcel.create();
  let ByteArrayVar = [1, 2, 3, 4, 5];
  let result = data.writeByteArray(ByteArrayVar);
  console.log("RpcClient: writeByteArray is " + result);
  let array = new Array(5);
  data.readByteArray(array);
  ```

### readByteArray

readByteArray(): number[]

从MessageParcel实例中读取字节数组。

**系统能力**:SystemCapability.Communication.IPC.Core

**返回值:**

  | 类型     | 说明           |
  | -------- | -------------- |
  | number[] | 返回字节数组。 |

**示例:**

Y
Yippo 已提交
4174
  ```ts
W
wanghaoxu 已提交
4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190
  let data = rpc.MessageParcel.create();
  let ByteArrayVar = [1, 2, 3, 4, 5];
  let result = data.writeByteArray(ByteArrayVar);
  console.log("RpcClient: writeByteArray is " + result);
  let array = data.readByteArray();
  console.log("RpcClient: readByteArray is " + array);
  ```

### writeShortArray

writeShortArray(shortArray: number[]): boolean

将短整数数组写入MessageParcel实例。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
4191
**参数:**
W
wanghaoxu 已提交
4192 4193 4194 4195 4196 4197 4198 4199 4200

  | 参数名     | 类型     | 必填 | 说明                 |
  | ---------- | -------- | ---- | -------------------- |
  | shortArray | number[] | 是   | 要写入的短整数数组。 |

**返回值:**

  | 类型    | 说明                          |
  | ------- | ----------------------------- |
4201
  | boolean | true:写入成功,false:写入失败。|
W
wanghaoxu 已提交
4202 4203 4204

**示例:**

Y
Yippo 已提交
4205
  ```ts
W
wanghaoxu 已提交
4206 4207 4208 4209 4210 4211 4212
  let data = rpc.MessageParcel.create();
  let result = data.writeShortArray([11, 12, 13]);
  console.log("RpcClient: writeShortArray is " + result);
  ```

### readShortArray

C
crazy_hu 已提交
4213
readShortArray(dataIn: number[]): void
W
wanghaoxu 已提交
4214 4215 4216 4217 4218

从MessageParcel实例中读取短整数数组。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
4219
**参数:**
W
wanghaoxu 已提交
4220 4221 4222 4223 4224 4225 4226

  | 参数名 | 类型     | 必填 | 说明                 |
  | ------ | -------- | ---- | -------------------- |
  | dataIn | number[] | 是   | 要读取的短整数数组。 |

**示例:**

Y
Yippo 已提交
4227
  ```ts
W
wanghaoxu 已提交
4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250
  let data = rpc.MessageParcel.create();
  let result = data.writeShortArray([11, 12, 13]);
  console.log("RpcClient: writeShortArray is " + result);
  let array = new Array(3);
  data.readShortArray(array);
  ```

### readShortArray

readShortArray(): number[]

从MessageParcel实例中读取短整数数组。

**系统能力**:SystemCapability.Communication.IPC.Core

**返回值:**

  | 类型     | 说明             |
  | -------- | ---------------- |
  | number[] | 返回短整数数组。 |

**示例:**

Y
Yippo 已提交
4251
  ```ts
W
wanghaoxu 已提交
4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266
  let data = rpc.MessageParcel.create();
  let result = data.writeShortArray([11, 12, 13]);
  console.log("RpcClient: writeShortArray is " + result);
  let array = data.readShortArray();
 console.log("RpcClient: readShortArray is " + array);
  ```

### writeIntArray

writeIntArray(intArray: number[]): boolean

将整数数组写入MessageParcel实例。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
4267
**参数:**
W
wanghaoxu 已提交
4268 4269 4270 4271 4272 4273 4274 4275 4276

  | 参数名   | 类型     | 必填 | 说明               |
  | -------- | -------- | ---- | ------------------ |
  | intArray | number[] | 是   | 要写入的整数数组。 |

**返回值:**

  | 类型    | 说明                          |
  | ------- | ----------------------------- |
4277
  | boolean | true:写入成功,false:写入失败。|
W
wanghaoxu 已提交
4278 4279 4280

**示例:**

Y
Yippo 已提交
4281
  ```ts
W
wanghaoxu 已提交
4282 4283 4284 4285 4286 4287 4288
  let data = rpc.MessageParcel.create();
  let result = data.writeIntArray([100, 111, 112]);
  console.log("RpcClient: writeIntArray is " + result);
  ```

### readIntArray

C
crazy_hu 已提交
4289
readIntArray(dataIn: number[]): void
W
wanghaoxu 已提交
4290 4291 4292 4293 4294

从MessageParcel实例中读取整数数组。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
4295
**参数:**
W
wanghaoxu 已提交
4296 4297 4298 4299 4300 4301 4302

  | 参数名 | 类型     | 必填 | 说明               |
  | ------ | -------- | ---- | ------------------ |
  | dataIn | number[] | 是   | 要读取的整数数组。 |

**示例:**

Y
Yippo 已提交
4303
  ```ts
W
wanghaoxu 已提交
4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326
  let data = rpc.MessageParcel.create();
  let result = data.writeIntArray([100, 111, 112]);
  console.log("RpcClient: writeIntArray is " + result);
  let array = new Array(3);
  data.readIntArray(array);
  ```

### readIntArray

readIntArray(): number[]

从MessageParcel实例中读取整数数组。

**系统能力**:SystemCapability.Communication.IPC.Core

**返回值:**

  | 类型     | 说明           |
  | -------- | -------------- |
  | number[] | 返回整数数组。 |

**示例:**

Y
Yippo 已提交
4327
  ```ts
W
wanghaoxu 已提交
4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342
  let data = rpc.MessageParcel.create();
  let result = data.writeIntArray([100, 111, 112]);
  console.log("RpcClient: writeIntArray is " + result);
  let array = data.readIntArray();
  console.log("RpcClient: readIntArray is " + array);
  ```

### writeLongArray

writeLongArray(longArray: number[]): boolean

将长整数数组写入MessageParcel实例。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
4343
**参数:**
W
wanghaoxu 已提交
4344 4345 4346 4347 4348 4349 4350 4351 4352

  | 参数名    | 类型     | 必填 | 说明                 |
  | --------- | -------- | ---- | -------------------- |
  | longArray | number[] | 是   | 要写入的长整数数组。 |

**返回值:**

  | 类型    | 说明                          |
  | ------- | ----------------------------- |
4353
  | boolean | true:写入成功,false:写入失败。|
W
wanghaoxu 已提交
4354 4355 4356

**示例:**

Y
Yippo 已提交
4357
  ```ts
W
wanghaoxu 已提交
4358 4359 4360 4361 4362 4363 4364
  let data = rpc.MessageParcel.create();
  let result = data.writeLongArray([1111, 1112, 1113]);
  console.log("RpcClient: writeLongArray is " + result);
  ```

### readLongArray

C
crazy_hu 已提交
4365
readLongArray(dataIn: number[]): void
W
wanghaoxu 已提交
4366 4367 4368 4369 4370

从MessageParcel实例读取长整数数组。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
4371
**参数:**
W
wanghaoxu 已提交
4372 4373 4374 4375 4376 4377 4378

  | 参数名 | 类型     | 必填 | 说明                 |
  | ------ | -------- | ---- | -------------------- |
  | dataIn | number[] | 是   | 要读取的长整数数组。 |

**示例:**

Y
Yippo 已提交
4379
  ```ts
W
wanghaoxu 已提交
4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402
  let data = rpc.MessageParcel.create();
  let result = data.writeLongArray([1111, 1112, 1113]);
  console.log("RpcClient: writeLongArray is " + result);
  let array = new Array(3);
  data.readLongArray(array);
  ```

### readLongArray

readLongArray(): number[]

从MessageParcel实例中读取长整数数组。

**系统能力**:SystemCapability.Communication.IPC.Core

**返回值:**

 | 类型     | 说明             |
 | -------- | ---------------- |
 | number[] | 返回长整数数组。 |

**示例:**

Y
Yippo 已提交
4403
  ```ts
W
wanghaoxu 已提交
4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418
  let data = rpc.MessageParcel.create();
  let result = data.writeLongArray([1111, 1112, 1113]);
  console.log("RpcClient: writeLongArray is " + result);
  let array = data.readLongArray();
  console.log("RpcClient: readLongArray is " + array);
  ```

### writeFloatArray

writeFloatArray(floatArray: number[]): boolean

将浮点数组写入MessageParcel实例。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
4419
**参数:**
W
wanghaoxu 已提交
4420 4421 4422 4423 4424 4425 4426 4427 4428

  | 参数名 | 类型 | 必填 | 说明 |
  | ---------- | -------- | ---- | --- |
  | floatArray | number[] | 是   | 要写入的浮点数组。由于系统内部对float类型的数据是按照double处理的,使用时对于数组所占的总字节数应按照double类型来计算。 |

**返回值:**

  | 类型    | 说明                          |
  | ------- | ----------------------------- |
4429
  | boolean | true:写入成功,false:写入失败。|
W
wanghaoxu 已提交
4430 4431 4432

**示例:**

Y
Yippo 已提交
4433
  ```ts
W
wanghaoxu 已提交
4434 4435 4436 4437 4438 4439 4440
  let data = rpc.MessageParcel.create();
  let result = data.writeFloatArray([1.2, 1.3, 1.4]);
  console.log("RpcClient: writeFloatArray is " + result);
  ```

### readFloatArray

C
crazy_hu 已提交
4441
readFloatArray(dataIn: number[]): void
W
wanghaoxu 已提交
4442 4443 4444 4445 4446

从MessageParcel实例中读取浮点数组。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
4447
**参数:**
W
wanghaoxu 已提交
4448 4449 4450 4451 4452 4453 4454

  | 参数名 | 类型 | 必填 | 说明 |
  | ------ | -------- | ---- | ------ |
  | dataIn | number[] | 是   | 要读取的浮点数组。由于系统内部对float类型的数据是按照double处理的,使用时对于数组所占的总字节数应按照double类型来计算。 |

**示例:**

Y
Yippo 已提交
4455
  ```ts
W
wanghaoxu 已提交
4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478
  let data = rpc.MessageParcel.create();
  let result = data.writeFloatArray([1.2, 1.3, 1.4]);
  console.log("RpcClient: writeFloatArray is " + result);
  let array = new Array(3);
  data.readFloatArray(array);
  ```

### readFloatArray

readFloatArray(): number[]

从MessageParcel实例中读取浮点数组。

**系统能力**:SystemCapability.Communication.IPC.Core

**返回值:**

  | 类型     | 说明           |
  | -------- | -------------- |
  | number[] | 返回浮点数组。 |

**示例:**

Y
Yippo 已提交
4479
  ```ts
W
wanghaoxu 已提交
4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494
  let data = rpc.MessageParcel.create();
  let result = data.writeFloatArray([1.2, 1.3, 1.4]);
  console.log("RpcClient: writeFloatArray is " + result);
  let array = data.readFloatArray();
  console.log("RpcClient: readFloatArray is " + array);
  ```

### writeDoubleArray

writeDoubleArray(doubleArray: number[]): boolean

将双精度浮点数组写入MessageParcel实例。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
4495
**参数:**
W
wanghaoxu 已提交
4496 4497 4498 4499 4500 4501 4502 4503 4504

  | 参数名      | 类型     | 必填 | 说明                     |
  | ----------- | -------- | ---- | ------------------------ |
  | doubleArray | number[] | 是   | 要写入的双精度浮点数组。 |

**返回值:**

  | 类型    | 说明                          |
  | ------- | ----------------------------- |
4505
  | boolean | true:写入成功,false:写入失败。|
W
wanghaoxu 已提交
4506 4507 4508

**示例:**

Y
Yippo 已提交
4509
  ```ts
W
wanghaoxu 已提交
4510 4511 4512 4513 4514 4515 4516
  let data = rpc.MessageParcel.create();
  let result = data.writeDoubleArray([11.1, 12.2, 13.3]);
  console.log("RpcClient: writeDoubleArray is " + result);
  ```

### readDoubleArray

C
crazy_hu 已提交
4517
readDoubleArray(dataIn: number[]): void
W
wanghaoxu 已提交
4518 4519 4520 4521 4522

从MessageParcel实例中读取双精度浮点数组。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
4523
**参数:**
W
wanghaoxu 已提交
4524 4525 4526 4527 4528 4529 4530

  | 参数名 | 类型     | 必填 | 说明                     |
  | ------ | -------- | ---- | ------------------------ |
  | dataIn | number[] | 是   | 要读取的双精度浮点数组。 |

**示例:**

Y
Yippo 已提交
4531
  ```ts
W
wanghaoxu 已提交
4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554
  let data = rpc.MessageParcel.create();
  let result = data.writeDoubleArray([11.1, 12.2, 13.3]);
  console.log("RpcClient: writeDoubleArray is " + result);
  let array = new Array(3);
  data.readDoubleArray(array);
  ```

### readDoubleArray

readDoubleArray(): number[]

从MessageParcel实例读取双精度浮点数组。

**系统能力**:SystemCapability.Communication.IPC.Core

**返回值:**

  | 类型     | 说明                 |
  | -------- | -------------------- |
  | number[] | 返回双精度浮点数组。 |

**示例:**

Y
Yippo 已提交
4555
  ```ts
W
wanghaoxu 已提交
4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570
  let data = rpc.MessageParcel.create();
  let result = data.writeDoubleArray([11.1, 12.2, 13.3]);
  console.log("RpcClient: writeDoubleArray is " + result);
  let array = data.readDoubleArray();
  console.log("RpcClient: readDoubleArray is " + array);
  ```

### writeBooleanArray

writeBooleanArray(booleanArray: boolean[]): boolean

将布尔数组写入MessageParcel实例。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
4571
**参数:**
W
wanghaoxu 已提交
4572 4573 4574 4575 4576 4577 4578 4579 4580

  | 参数名       | 类型      | 必填 | 说明               |
  | ------------ | --------- | ---- | ------------------ |
  | booleanArray | boolean[] | 是   | 要写入的布尔数组。 |

**返回值:**

  | 类型    | 说明                              |
  | ------- | --------------------------------- |
4581
  | boolean | true:写入成功,false:写入失败。|
W
wanghaoxu 已提交
4582 4583 4584

**示例:**

Y
Yippo 已提交
4585
  ```ts
W
wanghaoxu 已提交
4586 4587 4588 4589 4590 4591 4592
  let data = rpc.MessageParcel.create();
  let result = data.writeBooleanArray([false, true, false]);
  console.log("RpcClient: writeBooleanArray is " + result);
  ```

### readBooleanArray

C
crazy_hu 已提交
4593
readBooleanArray(dataIn: boolean[]): void
W
wanghaoxu 已提交
4594 4595 4596 4597 4598

从MessageParcel实例中读取布尔数组。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
4599
**参数:**
W
wanghaoxu 已提交
4600 4601 4602 4603 4604 4605 4606

  | 参数名 | 类型      | 必填 | 说明               |
  | ------ | --------- | ---- | ------------------ |
  | dataIn | boolean[] | 是   | 要读取的布尔数组。 |

**示例:**

Y
Yippo 已提交
4607
  ```ts
W
wanghaoxu 已提交
4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630
  let data = rpc.MessageParcel.create();
  let result = data.writeBooleanArray([false, true, false]);
  console.log("RpcClient: writeBooleanArray is " + result);
  let array = new Array(3);
  data.readBooleanArray(array);
  ```

### readBooleanArray

readBooleanArray(): boolean[]

从MessageParcel实例中读取布尔数组。

**系统能力**:SystemCapability.Communication.IPC.Core

**返回值:**

  | 类型      | 说明           |
  | --------- | -------------- |
  | boolean[] | 返回布尔数组。 |

**示例:**

Y
Yippo 已提交
4631
  ```ts
W
wanghaoxu 已提交
4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646
  let data = rpc.MessageParcel.create();
  let result = data.writeBooleanArray([false, true, false]);
  console.log("RpcClient: writeBooleanArray is " + result);
  let array = data.readBooleanArray();
  console.log("RpcClient: readBooleanArray is " + array);
  ```

### writeCharArray

writeCharArray(charArray: number[]): boolean

将单个字符数组写入MessageParcel实例。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
4647
**参数:**
W
wanghaoxu 已提交
4648 4649 4650 4651 4652 4653 4654 4655 4656

  | 参数名    | 类型     | 必填 | 说明                   |
  | --------- | -------- | ---- | ---------------------- |
  | charArray | number[] | 是   | 要写入的单个字符数组。 |

**返回值:**

  | 类型    | 说明                              |
  | ------- | --------------------------------- |
4657
  | boolean | true:写入成功,false:写入失败。|
W
wanghaoxu 已提交
4658 4659 4660

**示例:**

Y
Yippo 已提交
4661
  ```ts
W
wanghaoxu 已提交
4662 4663 4664 4665 4666 4667 4668
  let data = rpc.MessageParcel.create();
  let result = data.writeCharArray([97, 98, 88]);
  console.log("RpcClient: writeCharArray is " + result);
  ```

### readCharArray

C
crazy_hu 已提交
4669
readCharArray(dataIn: number[]): void
W
wanghaoxu 已提交
4670 4671 4672 4673 4674

从MessageParcel实例中读取单个字符数组。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
4675
**参数:**
W
wanghaoxu 已提交
4676 4677 4678 4679 4680 4681 4682

  | 参数名 | 类型     | 必填 | 说明                   |
  | ------ | -------- | ---- | ---------------------- |
  | dataIn | number[] | 是   | 要读取的单个字符数组。 |

**示例:**

Y
Yippo 已提交
4683
  ```ts
W
wanghaoxu 已提交
4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706
  let data = rpc.MessageParcel.create();
  let result = data.writeCharArray([97, 98, 99]);
  console.log("RpcClient: writeCharArray is " + result);
  let array = new Array(3);
  data.readCharArray(array);
  ```

### readCharArray

readCharArray(): number[]

从MessageParcel实例读取单个字符数组。

**系统能力**:SystemCapability.Communication.IPC.Core

**返回值:**

  | 类型     | 说明               |
  | -------- | ------------------ |
  | number[] | 返回单个字符数组。 |

**示例:**

Y
Yippo 已提交
4707
  ```ts
W
wanghaoxu 已提交
4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722
  let data = rpc.MessageParcel.create();
  let result = data.writeCharArray([97, 98, 99]);
  console.log("RpcClient: writeCharArray is " + result);
  let array = data.readCharArray();
  console.log("RpcClient: readCharArray is " + array);
  ```

### writeStringArray

writeStringArray(stringArray: string[]): boolean

将字符串数组写入MessageParcel实例。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
4723
**参数:**
W
wanghaoxu 已提交
4724 4725 4726 4727 4728 4729 4730 4731 4732

  | 参数名      | 类型     | 必填 | 说明 |
  | ----------- | -------- | ---- | ---------------- |
  | stringArray | string[] | 是   | 要写入的字符串数组,数组单个元素的长度应小于40960字节。 |

**返回值:**

  | 类型    | 说明 |
  | ------- | --------------------------------- |
4733
  | boolean | true:写入成功,false:写入失败。|
W
wanghaoxu 已提交
4734 4735 4736

**示例:**

Y
Yippo 已提交
4737
  ```ts
W
wanghaoxu 已提交
4738 4739 4740 4741 4742 4743 4744
  let data = rpc.MessageParcel.create();
  let result = data.writeStringArray(["abc", "def"]);
  console.log("RpcClient: writeStringArray is " + result);
  ```

### readStringArray

C
crazy_hu 已提交
4745
readStringArray(dataIn: string[]): void
W
wanghaoxu 已提交
4746 4747 4748 4749 4750

从MessageParcel实例读取字符串数组。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
4751
**参数:**
W
wanghaoxu 已提交
4752 4753 4754 4755 4756 4757 4758

  | 参数名 | 类型     | 必填 | 说明                 |
  | ------ | -------- | ---- | -------------------- |
  | dataIn | string[] | 是   | 要读取的字符串数组。 |

**示例:**

Y
Yippo 已提交
4759
  ```ts
W
wanghaoxu 已提交
4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782
  let data = rpc.MessageParcel.create();
  let result = data.writeStringArray(["abc", "def"]);
  console.log("RpcClient: writeStringArray is " + result);
  let array = new Array(2);
  data.readStringArray(array);
  ```

### readStringArray

readStringArray(): string[]

从MessageParcel实例读取字符串数组。

**系统能力**:SystemCapability.Communication.IPC.Core

**返回值:**

  | 类型     | 说明             |
  | -------- | ---------------- |
  | string[] | 返回字符串数组。 |

**示例:**

Y
Yippo 已提交
4783
  ```ts
W
wanghaoxu 已提交
4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800
  let data = rpc.MessageParcel.create();
  let result = data.writeStringArray(["abc", "def"]);
  console.log("RpcClient: writeStringArray is " + result);
  let array = data.readStringArray();
  console.log("RpcClient: readStringArray is " + array);
  ```

### writeNoException<sup>8+</sup>

writeNoException(): void

向MessageParcel写入“指示未发生异常”的信息。

**系统能力**:SystemCapability.Communication.IPC.Core

**示例:**

Y
Yippo 已提交
4801
  ```ts
W
wanghaoxu 已提交
4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842
  class MyDeathRecipient {
      onRemoteDied() {
          console.log("server died");
      }
  }
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
      addDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      removeDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      isObjectDead(): boolean {
          return false;
      }
      onRemoteRequest(code, data, reply, option) {
          if (code === 1) {
              console.log("RpcServer: onRemoteRequest called");
              reply.writeNoException();
              return true;
          } else {
              console.log("RpcServer: unknown code: " + code);
              return false;
          }
      }
  }
  ```

### readException<sup>8+</sup>

readException(): void

从MessageParcel中读取异常。

**系统能力**:SystemCapability.Communication.IPC.Core

**示例:**

Y
Yippo 已提交
4843
  ```ts
W
wanghaoxu 已提交
4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859
  import FA from "@ohos.ability.featureAbility";
  let proxy;
  let connect = {
      onConnect: function(elementName, remoteProxy) {
          console.log("RpcClient: js onConnect called.");
          proxy = remoteProxy;
      },
      onDisconnect: function(elementName) {
          console.log("RpcClient: onDisconnect");
      },
      onFailed: function() {
          console.log("RpcClient: onFailed");
      }
  };
  let want = {
      "bundleName": "com.ohos.server",
4860
      "abilityName": "com.ohos.server.EntryAbility",
W
wanghaoxu 已提交
4861 4862 4863 4864 4865 4866 4867
  };
  FA.connectAbility(want, connect);
  let option = new rpc.MessageOption();
  let data = rpc.MessageParcel.create();
  let reply = rpc.MessageParcel.create();
  data.writeInt(1);
  data.writeString("hello");
W
wanghaoxu 已提交
4868
  proxy.sendMessageRequest(1, data, reply, option)
W
wanghaoxu 已提交
4869 4870
      .then(function(errCode) {
          if (errCode === 0) {
W
wanghaoxu 已提交
4871
              console.log("sendMessageRequest got result");
W
wanghaoxu 已提交
4872 4873 4874 4875
              reply.readException();
              let msg = reply.readString();
              console.log("RPCTest: reply msg: " + msg);
          } else {
W
wanghaoxu 已提交
4876
              console.log("RPCTest: sendMessageRequest failed, errCode: " + errCode);
W
wanghaoxu 已提交
4877 4878
          }
      }).catch(function(e) {
W
wanghaoxu 已提交
4879
          console.log("RPCTest: sendMessageRequest got exception: " + e.message);
W
wanghaoxu 已提交
4880
      }).finally (() => {
W
wanghaoxu 已提交
4881
          console.log("RPCTest: sendMessageRequest ends, reclaim parcel");
W
wanghaoxu 已提交
4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894
          data.reclaim();
          reply.reclaim();
      });
  ```

### writeSequenceableArray

writeSequenceableArray(sequenceableArray: Sequenceable[]): boolean

将可序列化对象数组写入MessageParcel实例。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
4895
**参数:**
W
wanghaoxu 已提交
4896 4897 4898 4899 4900 4901 4902 4903 4904

  | 参数名            | 类型           | 必填 | 说明                       |
  | ----------------- | -------------- | ---- | -------------------------- |
  | sequenceableArray | Sequenceable[] | 是   | 要写入的可序列化对象数组。 |

**返回值:**

  | 类型    | 说明                              |
  | ------- | --------------------------------- |
4905
  | boolean | true:写入成功,false:写入失败。|
W
wanghaoxu 已提交
4906 4907 4908

**示例:**

Y
Yippo 已提交
4909
  ```ts
W
wanghaoxu 已提交
4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944
  class MySequenceable {
      num: number;
      str: string;
      constructor(num, str) {
          this.num = num;
          this.str = str;
      }
      marshalling(messageParcel) {
          messageParcel.writeInt(this.num);
          messageParcel.writeString(this.str);
          return true;
      }
      unmarshalling(messageParcel) {
          this.num = messageParcel.readInt();
          this.str = messageParcel.readString();
          return true;
      }
  }
  let sequenceable = new MySequenceable(1, "aaa");
  let sequenceable2 = new MySequenceable(2, "bbb");
  let sequenceable3 = new MySequenceable(3, "ccc");
  let a = [sequenceable, sequenceable2, sequenceable3];
  let data = rpc.MessageParcel.create();
  let result = data.writeSequenceableArray(a);
  console.log("RpcClient: writeSequenceableArray is " + result);
  ```

### readSequenceableArray<sup>8+</sup>

readSequenceableArray(sequenceableArray: Sequenceable[]): void

从MessageParcel实例读取可序列化对象数组。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
4945
**参数:**
W
wanghaoxu 已提交
4946 4947 4948 4949 4950 4951 4952

  | 参数名            | 类型           | 必填 | 说明                       |
  | ----------------- | -------------- | ---- | -------------------------- |
  | sequenceableArray | Sequenceable[] | 是   | 要读取的可序列化对象数组。 |

**示例:**

Y
Yippo 已提交
4953
  ```ts
W
wanghaoxu 已提交
4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990
  class MySequenceable {
      num: number;
      str: string;
      constructor(num, str) {
          this.num = num;
          this.str = str;
      }
      marshalling(messageParcel) {
          messageParcel.writeInt(this.num);
          messageParcel.writeString(this.str);
          return true;
      }
      unmarshalling(messageParcel) {
          this.num = messageParcel.readInt();
          this.str = messageParcel.readString();
          return true;
      }
  }
  let sequenceable = new MySequenceable(1, "aaa");
  let sequenceable2 = new MySequenceable(2, "bbb");
  let sequenceable3 = new MySequenceable(3, "ccc");
  let a = [sequenceable, sequenceable2, sequenceable3];
  let data = rpc.MessageParcel.create();
  let result = data.writeSequenceableArray(a);
  console.log("RpcClient: writeSequenceableArray is " + result);
  let b = [new MySequenceable(0, ""), new MySequenceable(0, ""), new MySequenceable(0, "")];
  data.readSequenceableArray(b);
  ```

### writeRemoteObjectArray<sup>8+</sup>

writeRemoteObjectArray(objectArray: IRemoteObject[]): boolean

将IRemoteObject对象数组写入MessageParcel。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
4991
**参数:**
W
wanghaoxu 已提交
4992 4993 4994 4995 4996 4997 4998 4999 5000

  | 参数名      | 类型            | 必填 | 说明 |
  | ----------- | --------------- | ---- | ----- |
  | objectArray | IRemoteObject[] | 是   | 要写入MessageParcel的IRemoteObject对象数组。 |

**返回值:**

  | 类型    | 说明                                                                                                                 |
  | ------- | -------------------------------------------------------------------------------------------------------------------- |
5001
  | boolean | true:写入成功,false:写入失败。|
W
wanghaoxu 已提交
5002 5003 5004

**示例:**

Y
Yippo 已提交
5005
  ```ts
W
wanghaoxu 已提交
5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042
  class MyDeathRecipient {
      onRemoteDied() {
          console.log("server died");
      }
  }
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
          this.attachLocalInterface(this, descriptor);
      }
      addDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      removeDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      isObjectDead(): boolean {
          return false;
      }
      asObject(): rpc.IRemoteObject {
          return this;
      }
  }
  let a = [new TestRemoteObject("testObject1"), new TestRemoteObject("testObject2"), new TestRemoteObject("testObject3")];
  let data = rpc.MessageParcel.create();
  let result = data.writeRemoteObjectArray(a);
  console.log("RpcClient: writeRemoteObjectArray is " + result);
  ```

### readRemoteObjectArray<sup>8+</sup>

readRemoteObjectArray(objects: IRemoteObject[]): void

从MessageParcel读取IRemoteObject对象数组。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
5043
**参数:**
5044

W
wanghaoxu 已提交
5045 5046 5047 5048 5049 5050
  | 参数名  | 类型            | 必填 | 说明 |
  | ------- | --------------- | ---- | --------- |
  | objects | IRemoteObject[] | 是   | 从MessageParcel读取的IRemoteObject对象数组。 |

**示例:**

Y
Yippo 已提交
5051
  ```ts
W
wanghaoxu 已提交
5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097
  class MyDeathRecipient {
      onRemoteDied() {
          console.log("server died");
      }
  }
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
          this.attachLocalInterface(this, descriptor);
      }
      addDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      removeDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      isObjectDead(): boolean {
         return false;
      }
      asObject(): rpc.IRemoteObject {
          return this;
      }
  }
  let a = [new TestRemoteObject("testObject1"), new TestRemoteObject("testObject2"), new TestRemoteObject("testObject3")];
  let data = rpc.MessageParcel.create();
  let result = data.writeRemoteObjectArray(a);
  let b = new Array(3);
  data.readRemoteObjectArray(b);
  ```

### readRemoteObjectArray<sup>8+</sup>

readRemoteObjectArray(): IRemoteObject[]

从MessageParcel读取IRemoteObject对象数组。

**系统能力**:SystemCapability.Communication.IPC.Core

**返回值:**

  | 类型 | 说明 |
  | --------------- | -------- |
  | IRemoteObject[] | 返回IRemoteObject对象数组。 |

**示例:**

Y
Yippo 已提交
5098
  ```ts
W
wanghaoxu 已提交
5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133
  class MyDeathRecipient {
      onRemoteDied() {
          console.log("server died");
      }
  }
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
          this.attachLocalInterface(this, descriptor);
      }
      addDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      removeDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      isObjectDead(): boolean {
          return false;
      }
      asObject(): rpc.IRemoteObject {
          return this;
      }
  }
  let a = [new TestRemoteObject("testObject1"), new TestRemoteObject("testObject2"), new TestRemoteObject("testObject3")];
  let data = rpc.MessageParcel.create();
  let result = data.writeRemoteObjectArray(a);
  console.log("RpcClient: readRemoteObjectArray is " + result);
  let b = data.readRemoteObjectArray();
  console.log("RpcClient: readRemoteObjectArray is " + b);
  ```

### closeFileDescriptor<sup>8+</sup>

static closeFileDescriptor(fd: number): void

5134
静态方法,关闭给定的文件描述符。
W
wanghaoxu 已提交
5135 5136 5137

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
5138
**参数:**
W
wanghaoxu 已提交
5139 5140 5141 5142 5143 5144 5145

  | 参数名 | 类型   | 必填 | 说明                 |
  | ------ | ------ | ---- | -------------------- |
  | fd     | number | 是   | 要关闭的文件描述符。 |

**示例:**

Y
Yippo 已提交
5146
  ```ts
W
wanghaoxu 已提交
5147 5148 5149 5150 5151 5152 5153 5154 5155 5156
  import fileio from '@ohos.fileio';
  let filePath = "path/to/file";
  let fd = fileio.openSync(filePath, 0o2| 0o100, 0o666);
  rpc.MessageParcel.closeFileDescriptor(fd);
  ```

### dupFileDescriptor<sup>8+</sup>

static dupFileDescriptor(fd: number) :number

5157
静态方法,复制给定的文件描述符。
W
wanghaoxu 已提交
5158 5159 5160

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
5161
**参数:**
W
wanghaoxu 已提交
5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174

  | 参数名 | 类型   | 必填 | 说明                     |
  | ------ | ------ | ---- | ------------------------ |
  | fd     | number | 是   | 表示已存在的文件描述符。 |

**返回值:**

  | 类型   | 说明                 |
  | ------ | -------------------- |
  | number | 返回新的文件描述符。 |

**示例:**

Y
Yippo 已提交
5175
  ```ts
W
wanghaoxu 已提交
5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193
  import fileio from '@ohos.fileio';
  let filePath = "path/to/file";
  let fd = fileio.openSync(filePath, 0o2| 0o100, 0o666);
  let newFd = rpc.MessageParcel.dupFileDescriptor(fd);
  ```

### containFileDescriptors<sup>8+</sup>

containFileDescriptors(): boolean

检查此MessageParcel对象是否包含文件描述符。

**系统能力**:SystemCapability.Communication.IPC.Core

**返回值:**

  | 类型    | 说明                                                               |
  | ------- | ------------------------------------------------------------------ |
5194
  | boolean |true:包含文件描述符,false:未包含文件描述符。|
W
wanghaoxu 已提交
5195 5196 5197

**示例:**

Y
Yippo 已提交
5198
  ```ts
W
wanghaoxu 已提交
5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217
  import fileio from '@ohos.fileio';
  let parcel = new rpc.MessageParcel();
  let filePath = "path/to/file";
  let r1 = parcel.containFileDescriptors();
  let fd = fileio.openSync(filePath, 0o2| 0o100, 0o666);
  let writeResult = parcel.writeFileDescriptor(fd);
  console.log("RpcTest: parcel writeFd result is : " + writeResult);
  let containFD = parcel.containFileDescriptors();
  console.log("RpcTest: parcel after write fd containFd result is : " + containFD);
  ```

### writeFileDescriptor<sup>8+</sup>

writeFileDescriptor(fd: number): boolean

写入文件描述符到MessageParcel。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
5218
**参数:**
W
wanghaoxu 已提交
5219 5220 5221 5222 5223 5224 5225 5226 5227

  | 参数名 | 类型   | 必填 | 说明         |
  | ------ | ------ | ---- | ------------ |
  | fd     | number | 是   | 文件描述符。 |

**返回值:**

  | 类型    | 说明                                      |
  | ------- | ----------------------------------------- |
5228
  | boolean | true:操作成功,false:操作失败。|
W
wanghaoxu 已提交
5229 5230 5231

**示例:**

Y
Yippo 已提交
5232
  ```ts
W
wanghaoxu 已提交
5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256
  import fileio from '@ohos.fileio';
  let parcel = new rpc.MessageParcel();
  let filePath = "path/to/file";
  let fd = fileio.openSync(filePath, 0o2| 0o100, 0o666);
  let writeResult = parcel.writeFileDescriptor(fd);
  console.log("RpcTest: parcel writeFd result is : " + writeResult);
  ```

### readFileDescriptor<sup>8+</sup>

readFileDescriptor(): number

从MessageParcel中读取文件描述符。

**系统能力**:SystemCapability.Communication.IPC.Core

**返回值:**

  | 类型   | 说明             |
  | ------ | ---------------- |
  | number | 返回文件描述符。 |

**示例:**

Y
Yippo 已提交
5257
  ```ts
W
wanghaoxu 已提交
5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274
  import fileio from '@ohos.fileio';
  let parcel = new rpc.MessageParcel();
  let filePath = "path/to/file";
  let fd = fileio.openSync(filePath, 0o2| 0o100, 0o666);
  let writeResult = parcel.writeFileDescriptor(fd);
  let readFD = parcel.readFileDescriptor();
  console.log("RpcTest: parcel read fd is : " + readFD);
  ```

### writeAshmem<sup>8+</sup>

writeAshmem(ashmem: Ashmem): boolean

将指定的匿名共享对象写入此MessageParcel。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
5275
**参数:**
W
wanghaoxu 已提交
5276 5277 5278 5279 5280 5281 5282 5283 5284

  | 参数名 | 类型   | 必填 | 说明                                |
  | ------ | ------ | ---- | ----------------------------------- |
  | ashmem | Ashmem | 是   | 要写入MessageParcel的匿名共享对象。 |

**返回值:**

  | 类型    | 说明                                                                 |
  | ------- | -------------------------------------------------------------------- |
5285
  | boolean | true:写入成功,false:写入失败。|
W
wanghaoxu 已提交
5286 5287 5288

**示例:**

Y
Yippo 已提交
5289
  ```ts
W
wanghaoxu 已提交
5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311
  let parcel = new rpc.MessageParcel();
  let ashmem = rpc.Ashmem.createAshmem("ashmem", 1024);
  let isWriteSuccess = parcel.writeAshmem(ashmem);
  console.log("RpcTest: write ashmem to result is : " + isWriteSuccess);
  ```

### readAshmem<sup>8+</sup>

readAshmem(): Ashmem

从MessageParcel读取匿名共享对象。

**系统能力**:SystemCapability.Communication.IPC.Core

**返回值:**

  | 类型   | 说明               |
  | ------ | ------------------ |
  | Ashmem | 返回匿名共享对象。 |

**示例:**

Y
Yippo 已提交
5312
  ```ts
W
wanghaoxu 已提交
5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336
  let parcel = new rpc.MessageParcel();
  let ashmem = rpc.Ashmem.createAshmem("ashmem", 1024);
  let isWriteSuccess = parcel.writeAshmem(ashmem);
  console.log("RpcTest: write ashmem to result is : " + isWriteSuccess);
  let readAshmem = parcel.readAshmem();
  console.log("RpcTest: read ashmem to result is : " + readAshmem);
  ```

### getRawDataCapacity<sup>8+</sup>

getRawDataCapacity(): number

获取MessageParcel可以容纳的最大原始数据量。

**系统能力**:SystemCapability.Communication.IPC.Core

**返回值:**

  | 类型   | 说明                                                       |
  | ------ | ---------------------------------------------------------- |
  | number | 返回MessageParcel可以容纳的最大原始数据量,即128&nbsp;Mb。 |

**示例:**

Y
Yippo 已提交
5337
  ```ts
W
wanghaoxu 已提交
5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350
  let parcel = new rpc.MessageParcel();
  let result = parcel.getRawDataCapacity();
  console.log("RpcTest: parcel get RawDataCapacity result is : " + result);
  ```

### writeRawData<sup>8+</sup>

writeRawData(rawData: number[], size: number): boolean

将原始数据写入MessageParcel对象。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
5351
**参数:**
W
wanghaoxu 已提交
5352 5353 5354 5355 5356 5357 5358 5359 5360 5361

  | 参数名  | 类型     | 必填 | 说明                               |
  | ------- | -------- | ---- | ---------------------------------- |
  | rawData | number[] | 是   | 要写入的原始数据。                 |
  | size    | number   | 是   | 发送的原始数据大小,以字节为单位。 |

**返回值:**

  | 类型    | 说明                                      |
  | ------- | ----------------------------------------- |
5362
  | boolean | true:写入成功,false:写入失败。|
W
wanghaoxu 已提交
5363 5364 5365

**示例:**

Y
Yippo 已提交
5366
  ```ts
W
wanghaoxu 已提交
5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380
  let parcel = new rpc.MessageParcel();
  let arr = [1, 2, 3, 4, 5];
  let isWriteSuccess = parcel.writeRawData(arr, arr.length);
  console.log("RpcTest: parcel write raw data result is : " + isWriteSuccess);
  ```

### readRawData<sup>8+</sup>

readRawData(size: number): number[]

从MessageParcel读取原始数据。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
5381
**参数:**
W
wanghaoxu 已提交
5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394

  | 参数名 | 类型   | 必填 | 说明                     |
  | ------ | ------ | ---- | ------------------------ |
  | size   | number | 是   | 要读取的原始数据的大小。 |

**返回值:**

  | 类型     | 说明                           |
  | -------- | ------------------------------ |
  | number[] | 返回原始数据(以字节为单位)。 |

**示例:**

Y
Yippo 已提交
5395
  ```ts
W
wanghaoxu 已提交
5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415
  let parcel = new rpc.MessageParcel();
  let arr = [1, 2, 3, 4, 5];
  let isWriteSuccess = parcel.writeRawData(arr, arr.length);
  console.log("RpcTest: parcel write raw data result is : " + isWriteSuccess);
  let result = parcel.readRawData(5);
  console.log("RpcTest: parcel read raw data result is : " + result);
  ```

## Parcelable<sup>9+</sup>

在进程间通信(IPC)期间,将类的对象写入MessageSequence并从MessageSequence中恢复它们。

### marshalling

marshalling(dataOut: MessageSequence): boolean

将此可序列对象封送到MessageSequence中。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
5416
**参数:**
W
wanghaoxu 已提交
5417 5418 5419 5420 5421 5422 5423 5424 5425

  | 参数名  | 类型            | 必填 | 说明                                        |
  | ------- | --------------- | ---- | ------------------------------------------- |
  | dataOut | MessageSequence | 是   | 可序列对象将被封送到的MessageSequence对象。 |

**返回值:**

  | 类型    | 说明                                      |
  | ------- | ----------------------------------------- |
5426
  | boolean | true:封送成功,false:封送失败。
W
wanghaoxu 已提交
5427 5428
**示例:**

Y
Yippo 已提交
5429
  ```ts
W
wanghaoxu 已提交
5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458
  class MyParcelable {
      num: number;
      str: string;
      constructor(num, str) {
          this.num = num;
          this.str = str;
      }
      marshalling(messageSequence) {
          messageSequence.writeInt(this.num);
          messageSequence.writeString(this.str);
          return true;
      }
      unmarshalling(messageSequence) {
          this.num = messageSequence.readInt();
          this.str = messageSequence.readString();
          return true;
      }
  }
  let parcelable = new MyParcelable(1, "aaa");
  let data = rpc.MessageSequence.create();
  let result = data.writeParcelable(parcelable);
  console.log("RpcClient: writeParcelable is " + result);
  let ret = new MyParcelable(0, "");
  let result2 = data.readParcelable(ret);
  console.log("RpcClient: readParcelable is " + result2);
  ```

### unmarshalling

C
crazy_hu 已提交
5459
unmarshalling(dataIn: MessageSequence): boolean
W
wanghaoxu 已提交
5460 5461 5462 5463 5464

从MessageSequence中解封此可序列对象。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
5465
**参数:**
W
wanghaoxu 已提交
5466 5467 5468 5469 5470 5471 5472 5473 5474

  | 参数名 | 类型            | 必填 | 说明                                            |
  | ------ | --------------- | ---- | ----------------------------------------------- |
  | dataIn | MessageSequence | 是   | 已将可序列对象封送到其中的MessageSequence对象。 |

**返回值:**

  | 类型    | 说明                                          |
  | ------- | --------------------------------------------- |
5475
  | boolean | true:反序列化成功,false:反序列化失败。|
W
wanghaoxu 已提交
5476 5477 5478

**示例:**

Y
Yippo 已提交
5479
  ```ts
W
wanghaoxu 已提交
5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506
  class MyParcelable {
      num: number;
      str: string;
      constructor(num, str) {
          this.num = num;
          this.str = str;
      }
      marshalling(messageSequence) {
          messageSequence.writeInt(this.num);
          messageSequence.writeString(this.str);
          return true;
      }
      unmarshalling(messageSequence) {
          this.num = messageSequence.readInt();
          this.str = messageSequence.readString();
          return true;
      }
  }
  let parcelable = new MyParcelable(1, "aaa");
  let data = rpc.MessageSequence.create();
  let result = data.writeParcelable(parcelable);
  console.log("RpcClient: writeParcelable is " + result);
  let ret = new MyParcelable(0, "");
  let result2 = data.readParcelable(ret);
  console.log("RpcClient: readParcelable is " + result2);
  ```

5507
## Sequenceable<sup>(deprecated)</sup>
W
wanghaoxu 已提交
5508

5509 5510 5511
>从API version 9 开始不再维护,建议使用[Parcelable](#parcelable9)类替代。

在进程间通信(IPC)期间,将类的对象写入MessageParcel并从MessageParcel中恢复它们。
W
wanghaoxu 已提交
5512 5513 5514 5515 5516 5517 5518 5519 5520

### marshalling

marshalling(dataOut: MessageParcel): boolean

将此可序列对象封送到MessageParcel中。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
5521
**参数:**
W
wanghaoxu 已提交
5522 5523 5524

  | 参数名  | 类型                            | 必填 | 说明                                      |
  | ------- | ------------------------------- | ---- | ----------------------------------------- |
5525
  | dataOut | [MessageParcel](#messageparceldeprecated) | 是   | 可序列对象将被封送到的MessageParcel对象。 |
W
wanghaoxu 已提交
5526 5527 5528 5529 5530

**返回值:**

  | 类型    | 说明                                      |
  | ------- | ----------------------------------------- |
5531
  | boolean | true:封送成功,false:封送失败。
W
wanghaoxu 已提交
5532 5533
**示例:**

Y
Yippo 已提交
5534
  ```ts
W
wanghaoxu 已提交
5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563
  class MySequenceable {
      num: number;
      str: string;
      constructor(num, str) {
          this.num = num;
          this.str = str;
      }
      marshalling(messageParcel) {
          messageParcel.writeInt(this.num);
          messageParcel.writeString(this.str);
          return true;
      }
      unmarshalling(messageParcel) {
          this.num = messageParcel.readInt();
          this.str = messageParcel.readString();
          return true;
      }
  }
  let sequenceable = new MySequenceable(1, "aaa");
  let data = rpc.MessageParcel.create();
  let result = data.writeSequenceable(sequenceable);
  console.log("RpcClient: writeSequenceable is " + result);
  let ret = new MySequenceable(0, "");
  let result2 = data.readSequenceable(ret);
  console.log("RpcClient: readSequenceable is " + result2);
  ```

### unmarshalling

C
crazy_hu 已提交
5564
unmarshalling(dataIn: MessageParcel): boolean
W
wanghaoxu 已提交
5565 5566 5567 5568 5569

从MessageParcel中解封此可序列对象。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
5570
**参数:**
W
wanghaoxu 已提交
5571 5572 5573

  | 参数名 | 类型                            | 必填 | 说明                                          |
  | ------ | ------------------------------- | ---- | --------------------------------------------- |
5574
  | dataIn | [MessageParcel](#messageparceldeprecated) | 是   | 已将可序列对象封送到其中的MessageParcel对象。 |
W
wanghaoxu 已提交
5575 5576 5577 5578 5579

**返回值:**

  | 类型    | 说明                                          |
  | ------- | --------------------------------------------- |
5580
  | boolean | true:反序列化成功,false:反序列化失败。|
W
wanghaoxu 已提交
5581 5582 5583

**示例:**

Y
Yippo 已提交
5584
  ```ts
W
wanghaoxu 已提交
5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631
  class MySequenceable {
      num: number;
      str: string;
      constructor(num, str) {
          this.num = num;
          this.str = str;
      }
      marshalling(messageParcel) {
          messageParcel.writeInt(this.num);
          messageParcel.writeString(this.str);
          return true;
      }
      unmarshalling(messageParcel) {
          this.num = messageParcel.readInt();
          this.str = messageParcel.readString();
          return true;
      }
  }
  let sequenceable = new MySequenceable(1, "aaa");
  let data = rpc.MessageParcel.create();
  let result = data.writeSequenceable(sequenceable);
  console.log("RpcClient: writeSequenceable is " + result);
  let ret = new MySequenceable(0, "");
  let result2 = data.readSequenceable(ret);
  console.log("RpcClient: readSequenceable is " + result2);
  ```

## IRemoteBroker

远端对象的代理持有者。用于获取代理对象。

### asObject

asObject(): IRemoteObject

需派生类实现,获取代理或远端对象。

**系统能力**:SystemCapability.Communication.IPC.Core

**返回值:**

  | 类型  | 说明 |
  | ---- | ----- |
  | [IRemoteObject](#iremoteobject) | 如果调用者是RemoteObject对象,则直接返回本身;如果调用者是[RemoteProxy](#remoteproxy)对象,则返回它的持有者[IRemoteObject](#iremoteobject)。 |

**示例:**

Y
Yippo 已提交
5632
  ```ts
W
wanghaoxu 已提交
5633 5634 5635 5636 5637
  class TestAbility extends rpc.RemoteObject {
      asObject() {
          return this;
      }
  }
5638
  let remoteObject = new TestAbility().asObject();
W
wanghaoxu 已提交
5639 5640 5641 5642
  ```

**示例:**

Y
Yippo 已提交
5643
  ```ts
5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659
  import FA from "@ohos.ability.featureAbility";
  let proxy;
  let connect = {
      onConnect: function (elementName, remoteProxy) {
          console.log("RpcClient: js onConnect called.");
          proxy = remoteProxy;
      },
      onDisconnect: function (elementName) {
          console.log("RpcClient: onDisconnect");
      },
      onFailed: function () {
          console.log("RpcClient: onFailed");
      }
  };
  let want = {
      "bundleName": "com.ohos.server",
5660
      "abilityName": "com.ohos.server.EntryAbility",
5661 5662 5663
  };
  FA.connectAbility(want, connect);

W
wanghaoxu 已提交
5664 5665 5666 5667 5668 5669 5670 5671 5672
  class TestProxy {
      remote: rpc.RemoteObject;
      constructor(remote) {
          this.remote = remote;
      }
      asObject() {
          return this.remote;
      }
  }
5673 5674
  let iRemoteObject = new TestProxy(proxy).asObject();

W
wanghaoxu 已提交
5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690
  ```

## DeathRecipient

用于订阅远端对象的死亡通知。当被订阅该通知的远端对象死亡时,本端可收到消息,调用[onRemoteDied](#onremotedied)接口。远端对象死亡可以为远端对象所在进程死亡,远端对象所在设备关机或重启,当远端对象与本端对象属于不同设备时,也可为远端对象离开组网时。

### onRemoteDied

onRemoteDied(): void

在成功添加死亡通知订阅后,当远端对象死亡时,将自动调用本方法。

**系统能力**:SystemCapability.Communication.IPC.Core

**示例:**

Y
Yippo 已提交
5691
  ```ts
W
wanghaoxu 已提交
5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704
  class MyDeathRecipient {
      onRemoteDied() {
          console.log("server died");
      }
  }
  ```

## RequestResult<sup>9+</sup>

发送请求的响应结果。

**系统能力**:以下各项对应的系统能力均为SystemCapability.Communication.IPC.Core。

C
crazy_hu 已提交
5705 5706 5707 5708 5709 5710
  | 名称    | 类型            | 可读 | 可写 | 说明                                  |
  | ------- | --------------- | ---- | ---- |-------------------------------------- |
  | errCode | number          | 是   | 否   | 错误码。                              |
  | code    | number          | 是   | 否   | 消息代码。                            |
  | data    | MessageSequence | 是   | 否   | 发送给对端进程的MessageSequence对象。 |
  | reply   | MessageSequence | 是   | 否   | 对端进程返回的MessageSequence对象。   |
W
wanghaoxu 已提交
5711 5712 5713

## SendRequestResult<sup>8+(deprecated)</sup>

5714 5715 5716
>从API version 9 开始不再维护,建议使用[RequestResult](#requestresult9)类替代。

发送请求的响应结果。
W
wanghaoxu 已提交
5717 5718 5719

**系统能力**:以下各项对应的系统能力均为SystemCapability.Communication.IPC.Core。

C
crazy_hu 已提交
5720 5721 5722 5723 5724 5725
  | 名称    | 类型          | 可读 | 可写 | 说明                                |
  | ------- | ------------- | ---- | ---- | ----------------------------------- |
  | errCode | number        | 是   | 否   | 错误码。                            |
  | code    | number        | 是   | 否   | 消息代码。                          |
  | data    | MessageParcel | 是   | 否   | 发送给对端进程的MessageParcel对象。 |
  | reply   | MessageParcel | 是   | 否   | 对端进程返回的MessageParcel对象。   |
W
wanghaoxu 已提交
5726 5727 5728 5729 5730 5731 5732 5733 5734

## IRemoteObject

该接口可用于查询或获取接口描述符、添加或删除死亡通知、转储对象状态到特定文件、发送消息。

### getLocalInterface<sup>9+</sup>

getLocalInterface(descriptor: string): IRemoteBroker

5735
查询接口描述符的字符串。
W
wanghaoxu 已提交
5736 5737 5738

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
5739
**参数:**
W
wanghaoxu 已提交
5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750

  | 参数名     | 类型   | 必填 | 说明                 |
  | ---------- | ------ | ---- | -------------------- |
  | descriptor | string | 是   | 接口描述符的字符串。 |

**返回值:**

  | 类型          | 说明                                          |
  | ------------- | --------------------------------------------- |
  | IRemoteBroker | 返回绑定到指定接口描述符的IRemoteBroker对象。 |

5751
### queryLocalInterface<sup>(deprecated)</sup>
W
wanghaoxu 已提交
5752

5753 5754
>从API version 9 开始不再维护,建议使用[getLocalInterface](#getlocalinterface9)类替代。

W
wanghaoxu 已提交
5755 5756
queryLocalInterface(descriptor: string): IRemoteBroker

5757
查询接口描述符的字符串。
W
wanghaoxu 已提交
5758 5759 5760

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
5761
**参数:**
W
wanghaoxu 已提交
5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774

  | 参数名     | 类型   | 必填 | 说明                 |
  | ---------- | ------ | ---- | -------------------- |
  | descriptor | string | 是   | 接口描述符的字符串。 |

**返回值:**

  | 类型          | 说明                                          |
  | ------------- | --------------------------------------------- |
  | IRemoteBroker | 返回绑定到指定接口描述符的IRemoteBroker对象。 |

### sendRequest<sup>(deprecated)</sup>

5775 5776
>从API version 9 开始不再维护,建议使用[sendMessageRequest](#sendmessagerequest9)类替代。

C
crazy_hu 已提交
5777
sendRequest(code: number, data: MessageParcel, reply: MessageParcel, options: MessageOption): boolean
W
wanghaoxu 已提交
5778

5779
以同步或异步方式向对端进程发送MessageParcel消息。如果为选项设置了异步模式,则期约立即兑现,reply报文里没有内容。如果为选项设置了同步模式,则期约将在sendRequest返回时兑现,回复内容在reply报文里。
W
wanghaoxu 已提交
5780 5781 5782

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
5783
**参数:**
W
wanghaoxu 已提交
5784 5785 5786 5787

  | 参数名  | 类型 | 必填 | 说明  |
  | ------- | ------------------------------- | ---- | ---- |
  | code    | number                          | 是   | 本次请求调用的消息码,由通信双方确定。如果接口由IDL工具生成,则消息代码由IDL自动生成。 |
5788 5789
  | data    | [MessageParcel](#messageparceldeprecated) | 是   | 保存待发送数据的&nbsp;MessageParcel对象。                                              |
  | reply   | [MessageParcel](#messageparceldeprecated) | 是   | 接收应答数据的MessageParcel对象。                                                      |
W
wanghaoxu 已提交
5790 5791 5792 5793 5794 5795
  | options | [MessageOption](#messageoption) | 是   | 本次请求的同异步模式,默认同步调用。                                                   |

**返回值:**

  | 类型    | 说明                                          |
  | ------- | --------------------------------------------- |
5796
  | boolean | true:发送成功,false:发送失败。|
W
wanghaoxu 已提交
5797 5798 5799 5800


### sendRequest<sup>8+(deprecated)</sup>

5801 5802
>从API version 9 开始不再维护,建议使用[sendMessageRequest](#sendmessagerequest9)类替代。

C
crazy_hu 已提交
5803
sendRequest(code: number, data: MessageParcel, reply: MessageParcel, options: MessageOption): Promise&lt;SendRequestResult&gt;
W
wanghaoxu 已提交
5804

5805
以同步或异步方式向对端进程发送MessageParcel消息。如果为选项设置了异步模式,则期约立即兑现,reply报文里没有内容。如果为选项设置了同步模式,则期约将在sendRequest返回时兑现,回复内容在reply报文里。
W
wanghaoxu 已提交
5806 5807 5808

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
5809
**参数:**
W
wanghaoxu 已提交
5810 5811 5812 5813

  | 参数名  | 类型                            | 必填 | 说明                                                                                   |
  | ------- | ------------------------------- | ---- | -------------------------------------------------------------------------------------- |
  | code    | number                          | 是   | 本次请求调用的消息码,由通信双方确定。如果接口由IDL工具生成,则消息代码由IDL自动生成。 |
5814 5815
  | data    | [MessageParcel](#messageparceldeprecated) | 是   | 保存待发送数据的&nbsp;MessageParcel对象。                                              |
  | reply   | [MessageParcel](#messageparceldeprecated) | 是   | 接收应答数据的MessageParcel对象。                                                      |
W
wanghaoxu 已提交
5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826
  | options | [MessageOption](#messageoption) | 是   | 本次请求的同异步模式,默认同步调用。                                                   |

**返回值:**

  | 类型                             | 说明                                          |
  | -------------------------------- | --------------------------------------------- |
  | Promise&lt;SendRequestResult&gt; | 返回一个期约,兑现值是sendRequestResult实例。 |


### sendMessageRequest<sup>9+</sup>

C
crazy_hu 已提交
5827
sendMessageRequest(code: number, data: MessageSequence, reply: MessageSequence, options: MessageOption): Promise&lt;RequestResult&gt;
W
wanghaoxu 已提交
5828 5829 5830 5831 5832

以同步或异步方式向对端进程发送MessageSequence消息。如果为选项设置了异步模式,则期约立即兑现,reply报文里没有内容。如果为选项设置了同步模式,则期约将在sendMessageRequest返回时兑现,回复内容在reply报文里。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
5833
**参数:**
W
wanghaoxu 已提交
5834 5835 5836 5837

  | 参数名  | 类型                            | 必填 | 说明                                                                                   |
  | ------- | ------------------------------- | ---- | -------------------------------------------------------------------------------------- |
  | code    | number                          | 是   | 本次请求调用的消息码,由通信双方确定。如果接口由IDL工具生成,则消息代码由IDL自动生成。 |
5838 5839
  | data    | [MessageSequence](#messagesequence9) | 是   | 保存待发送数据的&nbsp;MessageSequence对象。                                            |
  | reply   | [MessageSequence](#messagesequence9) | 是   | 接收应答数据的MessageSequence对象。                                                    |
W
wanghaoxu 已提交
5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856
  | options | [MessageOption](#messageoption) | 是   | 本次请求的同异步模式,默认同步调用。                                                   |

**返回值:**

  | 类型                         | 说明                                      |
  | ---------------------------- | ----------------------------------------- |
  | Promise&lt;RequestResult&gt; | 返回一个期约,兑现值是requestResult实例。 |


### sendMessageRequest<sup>9+</sup>

sendMessageRequest(code: number, data: MessageSequence, reply: MessageSequence, options: MessageOption, callback: AsyncCallback&lt;RequestResult&gt;): void

以同步或异步方式向对端进程发送MessageSequence消息。如果为选项设置了异步模式,则立即收到回调,reply报文里没有内容。如果为选项设置了同步模式,则将在sendRequest返回时收到回调,回复内容在reply报文里。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
5857
**参数:**
W
wanghaoxu 已提交
5858 5859 5860 5861

  | 参数名   | 类型                               | 必填 | 说明                                                                                   |
  | -------- | ---------------------------------- | ---- | -------------------------------------------------------------------------------------- |
  | code     | number                             | 是   | 本次请求调用的消息码,由通信双方确定。如果接口由IDL工具生成,则消息代码由IDL自动生成。 |
5862 5863
  | data     | [MessageSequence](#messagesequence9) | 是   | 保存待发送数据的&nbsp;MessageSequence对象。                                            |
  | reply    | [MessageSequence](#messagesequence9) | 是   | 接收应答数据的MessageSequence对象。                                                    |
W
wanghaoxu 已提交
5864 5865 5866 5867 5868
  | options  | [MessageOption](#messageoption)    | 是   | 本次请求的同异步模式,默认同步调用。                                                   |
  | callback | AsyncCallback&lt;RequestResult&gt; | 是   | 接收发送结果的回调。                                                                   |

### sendRequest<sup>8+(deprecated)</sup>

5869 5870
>从API version 9 开始不再维护,建议使用[sendMessageRequest](#sendmessagerequest9)类替代。

W
wanghaoxu 已提交
5871 5872
sendRequest(code: number, data: MessageParcel, reply: MessageParcel, options: MessageOption, callback: AsyncCallback&lt;SendRequestResult&gt;): void

5873
以同步或异步方式向对端进程发送MessageParcel消息。如果为选项设置了异步模式,则立即收到回调,reply报文里没有内容。如果为选项设置了同步模式,则将在sendRequest返回时收到回调,回复内容在reply报文里。
W
wanghaoxu 已提交
5874 5875 5876

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
5877
**参数:**
W
wanghaoxu 已提交
5878 5879 5880 5881

  | 参数名   | 类型                                   | 必填 | 说明                                                                                   |
  | -------- | -------------------------------------- | ---- | -------------------------------------------------------------------------------------- |
  | code     | number                                 | 是   | 本次请求调用的消息码,由通信双方确定。如果接口由IDL工具生成,则消息代码由IDL自动生成。 |
5882 5883
  | data     | [MessageParcel](#messageparceldeprecated)        | 是   | 保存待发送数据的&nbsp;MessageParcel对象。                                              |
  | reply    | [MessageParcel](#messageparceldeprecated)        | 是   | 接收应答数据的MessageParcel对象。                                                      |
W
wanghaoxu 已提交
5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894
  | options  | [MessageOption](#messageoption)        | 是   | 本次请求的同异步模式,默认同步调用。                                                   |
  | callback | AsyncCallback&lt;SendRequestResult&gt; | 是   | 接收发送结果的回调。                                                                   |

### registerDeathRecipient<sup>9+</sup>

registerDeathRecipient(recipient: DeathRecipient, flags: number): void

注册用于接收远程对象死亡通知的回调。如果与RemoteProxy对象匹配的远程对象进程死亡,则调用此方法。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
5895
**参数:**
W
wanghaoxu 已提交
5896 5897 5898 5899 5900 5901

  | 参数名    | 类型                              | 必填 | 说明           |
  | --------- | --------------------------------- | ---- | -------------- |
  | recipient | [DeathRecipient](#deathrecipient) | 是   | 要注册的回调。 |
  | flags     | number                            | 是   | 死亡通知标志。 |

W
wanghaoxu 已提交
5902 5903
**错误码:**

C
crazy_hu 已提交
5904
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
5905

W
wanghaoxu 已提交
5906 5907 5908
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900008 | proxy or remote object is invalid |
W
wanghaoxu 已提交
5909

5910
### addDeathrecipient<sup>(deprecated)</sup>
W
wanghaoxu 已提交
5911

5912 5913
>从API version 9 开始不再维护,建议使用[registerDeathRecipient](#registerdeathrecipient9)类替代。

W
wanghaoxu 已提交
5914 5915
addDeathRecipient(recipient: DeathRecipient, flags: number): boolean

5916
注册用于接收远程对象死亡通知的回调。如果与RemoteProxy对象匹配的远程对象进程死亡,则调用此方法。
W
wanghaoxu 已提交
5917 5918 5919

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
5920
**参数:**
W
wanghaoxu 已提交
5921 5922 5923 5924 5925 5926 5927 5928 5929 5930

  | 参数名    | 类型                              | 必填 | 说明           |
  | --------- | --------------------------------- | ---- | -------------- |
  | recipient | [DeathRecipient](#deathrecipient) | 是   | 要注册的回调。 |
  | flags     | number                            | 是   | 死亡通知标志。 |

**返回值:**

  | 类型    | 说明                                          |
  | ------- | --------------------------------------------- |
5931
  | boolean | true:回调注册成功,false:回调注册失败。|
W
wanghaoxu 已提交
5932 5933 5934 5935


### unregisterDeathRecipient<sup>9+</sup>

C
crazy_hu 已提交
5936
unregisterDeathRecipient(recipient: DeathRecipient, flags: number): void
W
wanghaoxu 已提交
5937 5938 5939 5940 5941

注销用于接收远程对象死亡通知的回调。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
5942
**参数:**
W
wanghaoxu 已提交
5943 5944 5945 5946 5947 5948

  | 参数名    | 类型                              | 必填 | 说明           |
  | --------- | --------------------------------- | ---- | -------------- |
  | recipient | [DeathRecipient](#deathrecipient) | 是   | 要注销的回调。 |
  | flags     | number                            | 是   | 死亡通知标志。 |

W
wanghaoxu 已提交
5949 5950
**错误码:**

C
crazy_hu 已提交
5951
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
5952

W
wanghaoxu 已提交
5953 5954 5955
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900008 | proxy or remote object is invalid |
W
wanghaoxu 已提交
5956

5957
### removeDeathRecipient<sup>(deprecated)</sup>
W
wanghaoxu 已提交
5958

5959 5960
>从API version 9 开始不再维护,建议使用[unregisterDeathRecipient](#unregisterdeathrecipient9)类替代。

W
wanghaoxu 已提交
5961 5962
removeDeathRecipient(recipient: DeathRecipient, flags: number): boolean

5963
注销用于接收远程对象死亡通知的回调。
W
wanghaoxu 已提交
5964 5965 5966

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
5967
**参数:**
W
wanghaoxu 已提交
5968 5969 5970 5971 5972 5973 5974 5975 5976 5977

  | 参数名    | 类型                              | 必填 | 说明           |
  | --------- | --------------------------------- | ---- | -------------- |
  | recipient | [DeathRecipient](#deathrecipient) | 是   | 要注销的回调。 |
  | flags     | number                            | 是   | 死亡通知标志。 |

**返回值:**

  | 类型    | 说明                                          |
  | ------- | --------------------------------------------- |
5978
  | boolean | true:回调注销成功,false:回调注销失败。|
W
wanghaoxu 已提交
5979 5980 5981 5982 5983

### getDescriptor<sup>9+</sup>

getDescriptor(): string

5984
获取对象的接口描述符,接口描述符为字符串。
W
wanghaoxu 已提交
5985 5986 5987 5988 5989 5990 5991 5992 5993

**系统能力**:SystemCapability.Communication.IPC.Core

**返回值:**

  | 类型   | 说明             |
  | ------ | ---------------- |
  | string | 返回接口描述符。 |

W
wanghaoxu 已提交
5994 5995
**错误码:**

C
crazy_hu 已提交
5996
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
5997

W
wanghaoxu 已提交
5998 5999 6000
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900008 | proxy or remote object is invalid |
W
wanghaoxu 已提交
6001 6002


6003
### getInterfaceDescriptor<sup>(deprecated)</sup>
W
wanghaoxu 已提交
6004

6005 6006
>从API version 9 开始不再维护,建议使用[getDescriptor](#getdescriptor9)类替代。

W
wanghaoxu 已提交
6007 6008
getInterfaceDescriptor(): string

6009
获取对象的接口描述符,接口描述符为字符串。
W
wanghaoxu 已提交
6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031

**系统能力**:SystemCapability.Communication.IPC.Core

**返回值:**

  | 类型   | 说明             |
  | ------ | ---------------- |
  | string | 返回接口描述符。 |


### isObjectDead

isObjectDead(): boolean

检查当前对象是否死亡。

**系统能力**:SystemCapability.Communication.IPC.Core

**返回值:**

  | 类型    | 说明                                        |
  | ------- | ------------------------------------------- |
6032
  | boolean | true:对象死亡,false:对象未死亡。|
W
wanghaoxu 已提交
6033 6034 6035 6036 6037 6038 6039 6040


## RemoteProxy

实现IRemoteObject代理对象。

**系统能力**:以下各项对应的系统能力均为SystemCapability.Communication.IPC.Core。

6041
| 名称                  | 默认值                      | 说明                              |
W
wanghaoxu 已提交
6042 6043 6044 6045 6046 6047 6048 6049 6050
| --------------------- | ----------------------- | --------------------------------- |
| PING_TRANSACTION      | 1599098439 (0x5f504e47) | 内部指令码,用于测试IPC服务正常。 |
| DUMP_TRANSACTION      | 1598311760 (0x5f444d50) | 内部指令码,获取Binder内部状态。  |
| INTERFACE_TRANSACTION | 1598968902 (0x5f4e5446) | 内部指令码,获取对端接口描述符。  |
| MIN_TRANSACTION_ID    | 1 (0x00000001)          | 最小有效指令码。                  |
| MAX_TRANSACTION_ID    | 16777215 (0x00FFFFFF)   | 最大有效指令码。                  |

### sendRequest<sup>(deprecated)</sup>

6051 6052
>从API version 9 开始不再维护,建议使用[sendMessageRequest](#sendmessagerequest9)类替代。

C
crazy_hu 已提交
6053
sendRequest(code: number, data: MessageParcel, reply: MessageParcel, options: MessageOption): boolean
W
wanghaoxu 已提交
6054

6055
以同步或异步方式向对端进程发送MessageParcel消息。如果为选项设置了异步模式,则期约立即兑现,reply报文里没有内容。如果为选项设置了同步模式,则期约将在sendRequest返回时兑现,回复内容在reply报文里。
W
wanghaoxu 已提交
6056 6057 6058

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
6059
**参数:**
W
wanghaoxu 已提交
6060 6061 6062 6063

  | 参数名  | 类型                            | 必填 | 说明                                                                                   |
  | ------- | ------------------------------- | ---- | -------------------------------------------------------------------------------------- |
  | code    | number                          | 是   | 本次请求调用的消息码,由通信双方确定。如果接口由IDL工具生成,则消息代码由IDL自动生成。 |
6064 6065
  | data    | [MessageParcel](#messageparceldeprecated) | 是   | 保存待发送数据的&nbsp;MessageParcel对象。                                              |
  | reply   | [MessageParcel](#messageparceldeprecated) | 是   | 接收应答数据的MessageParcel对象。                                                      |
W
wanghaoxu 已提交
6066 6067 6068 6069 6070 6071
  | options | [MessageOption](#messageoption) | 是   | 本次请求的同异步模式,默认同步调用。                                                   |

**返回值:**

  | 类型    | 说明                                          |
  | ------- | --------------------------------------------- |
6072
  | boolean | true:发送成功,false:发送失败。|
W
wanghaoxu 已提交
6073 6074 6075

**示例:**

Y
Yippo 已提交
6076
  ```ts
W
wanghaoxu 已提交
6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092
  import FA from "@ohos.ability.featureAbility";
  let proxy;
  let connect = {
      onConnect: function(elementName, remoteProxy) {
          console.log("RpcClient: js onConnect called.");
          proxy = remoteProxy;
      },
      onDisconnect: function(elementName) {
          console.log("RpcClient: onDisconnect");
      },
      onFailed: function() {
          console.log("RpcClient: onFailed");
      }
  };
  let want = {
      "bundleName": "com.ohos.server",
6093
      "abilityName": "com.ohos.server.EntryAbility",
W
wanghaoxu 已提交
6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115
  };
  FA.connectAbility(want, connect);
  let option = new rpc.MessageOption();
  let data = rpc.MessageParcel.create();
  let reply = rpc.MessageParcel.create();
  data.writeInt(1);
  data.writeString("hello");
  let ret: boolean = proxy.sendRequest(1, data, reply, option);
  if (ret) {
      console.log("sendRequest got result");
      let msg = reply.readString();
      console.log("RPCTest: reply msg: " + msg);
  } else {
      console.log("RPCTest: sendRequest failed");
  }
  console.log("RPCTest: sendRequest ends, reclaim parcel");
  data.reclaim();
  reply.reclaim();
  ```

### sendMessageRequest<sup>9+</sup>

C
crazy_hu 已提交
6116 6117
sendMessageRequest(code: number, data: MessageSequence, reply: MessageSequence, options: MessageOption): Promise&lt;RequestResult&gt;

W
wanghaoxu 已提交
6118 6119 6120 6121
以同步或异步方式向对端进程发送MessageSequence消息。如果为选项设置了异步模式,则期约立即兑现,reply报文里没有内容。如果为选项设置了同步模式,则期约将在sendMessageRequest返回时兑现,回复内容在reply报文里。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
6122
**参数:**
W
wanghaoxu 已提交
6123 6124 6125 6126

  | 参数名  | 类型                            | 必填 | 说明                                                                                   |
  | ------- | ------------------------------- | ---- | -------------------------------------------------------------------------------------- |
  | code    | number                          | 是   | 本次请求调用的消息码,由通信双方确定。如果接口由IDL工具生成,则消息代码由IDL自动生成。 |
6127 6128
  | data    | [MessageSequence](#messagesequence9) | 是   | 保存待发送数据的&nbsp;MessageSequence对象。                                            |
  | reply   | [MessageSequence](#messagesequence9)  | 是   | 接收应答数据的MessageSequence对象。                                                    |
W
wanghaoxu 已提交
6129 6130 6131 6132 6133 6134 6135 6136 6137 6138
  | options | [MessageOption](#messageoption) | 是   | 本次请求的同异步模式,默认同步调用。                                                   |

**返回值:**

  | 类型                         | 说明                                      |
  | ---------------------------- | ----------------------------------------- |
  | Promise&lt;RequestResult&gt; | 返回一个期约,兑现值是requestResult实例。 |

**示例:**

Y
Yippo 已提交
6139
  ```ts
W
wanghaoxu 已提交
6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155
  import FA from "@ohos.ability.featureAbility";
  let proxy;
  let connect = {
      onConnect: function(elementName, remoteProxy) {
          console.log("RpcClient: js onConnect called.");
          proxy = remoteProxy;
      },
      onDisconnect: function(elementName) {
          console.log("RpcClient: onDisconnect");
      },
      onFailed: function() {
          console.log("RpcClient: onFailed");
      }
  };
  let want = {
      "bundleName": "com.ohos.server",
6156
      "abilityName": "com.ohos.server.EntryAbility",
W
wanghaoxu 已提交
6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184
  };
  FA.connectAbility(want, connect);
  let option = new rpc.MessageOption();
  let data = rpc.MessageSequence.create();
  let reply = rpc.MessageSequence.create();
  data.writeInt(1);
  data.writeString("hello");
  proxy.sendMessageRequest(1, data, reply, option)
      .then(function(result) {
          if (result.errCode === 0) {
              console.log("sendMessageRequest got result");
              result.reply.readException();
              let msg = result.reply.readString();
              console.log("RPCTest: reply msg: " + msg);
          } else {
              console.log("RPCTest: sendMessageRequest failed, errCode: " + result.errCode);
          }
      }).catch(function(e) {
          console.log("RPCTest: sendMessageRequest got exception: " + e.message);
      }).finally (() => {
          console.log("RPCTest: sendMessageRequest ends, reclaim parcel");
          data.reclaim();
          reply.reclaim();
      });
  ```

### sendRequest<sup>8+(deprecated)</sup>

6185 6186
>从API version 9 开始不再维护,建议使用[sendMessageRequest](#sendmessagerequest9)类替代。

C
crazy_hu 已提交
6187
sendRequest(code: number, data: MessageParcel, reply: MessageParcel, options: MessageOption): Promise&lt;SendRequestResult&gt;
W
wanghaoxu 已提交
6188

6189
以同步或异步方式向对端进程发送MessageParcel消息。如果为选项设置了异步模式,则期约立即兑现,reply报文里没有内容。如果为选项设置了同步模式,则期约将在sendRequest返回时兑现,回复内容在reply报文里。
W
wanghaoxu 已提交
6190 6191 6192

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
6193
**参数:**
W
wanghaoxu 已提交
6194 6195 6196 6197

  | 参数名  | 类型                            | 必填 | 说明                                                                                   |
  | ------- | ------------------------------- | ---- | -------------------------------------------------------------------------------------- |
  | code    | number                          | 是   | 本次请求调用的消息码,由通信双方确定。如果接口由IDL工具生成,则消息代码由IDL自动生成。 |
6198 6199
  | data    | [MessageParcel](#messageparceldeprecated) | 是   | 保存待发送数据的&nbsp;MessageParcel对象。                                              |
  | reply   | [MessageParcel](#messageparceldeprecated) | 是   | 接收应答数据的MessageParcel对象。                                                      |
W
wanghaoxu 已提交
6200 6201 6202 6203 6204 6205 6206 6207 6208 6209
  | options | [MessageOption](#messageoption) | 是   | 本次请求的同异步模式,默认同步调用。                                                   |

**返回值:**

  | 类型                             | 说明                                          |
  | -------------------------------- | --------------------------------------------- |
  | Promise&lt;SendRequestResult&gt; | 返回一个期约,兑现值是sendRequestResult实例。 |

**示例:**

Y
Yippo 已提交
6210
  ```ts
W
wanghaoxu 已提交
6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226
  import FA from "@ohos.ability.featureAbility";
  let proxy;
  let connect = {
      onConnect: function(elementName, remoteProxy) {
          console.log("RpcClient: js onConnect called.");
          proxy = remoteProxy;
      },
      onDisconnect: function(elementName) {
          console.log("RpcClient: onDisconnect");
      },
      onFailed: function() {
          console.log("RpcClient: onFailed");
      }
  };
  let want = {
      "bundleName": "com.ohos.server",
6227
      "abilityName": "com.ohos.server.EntryAbility",
W
wanghaoxu 已提交
6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261
  };
  FA.connectAbility(want, connect);
  let option = new rpc.MessageOption();
  let data = rpc.MessageParcel.create();
  let reply = rpc.MessageParcel.create();
  data.writeInt(1);
  data.writeString("hello");
  proxy.sendRequest(1, data, reply, option)
      .then(function(result) {
          if (result.errCode === 0) {
              console.log("sendRequest got result");
              result.reply.readException();
              let msg = result.reply.readString();
              console.log("RPCTest: reply msg: " + msg);
          } else {
              console.log("RPCTest: sendRequest failed, errCode: " + result.errCode);
          }
      }).catch(function(e) {
          console.log("RPCTest: sendRequest got exception: " + e.message);
      }).finally (() => {
          console.log("RPCTest: sendRequest ends, reclaim parcel");
          data.reclaim();
          reply.reclaim();
      });
  ```

### sendMessageRequest<sup>9+</sup>

sendMessageRequest(code: number, data: MessageSequence, reply: MessageSequence, options: MessageOption, callback: AsyncCallback&lt;RequestResult&gt;): void

以同步或异步方式向对端进程发送MessageSequence消息。如果为选项设置了异步模式,则立即收到回调,reply报文里没有内容。如果为选项设置了同步模式,则将在sendMessageRequest返回后的某个时机执行回调,回复内容在RequestResult的reply报文里。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
6262
**参数:**
W
wanghaoxu 已提交
6263 6264 6265 6266

  | 参数名   | 类型                               | 必填 | 说明                                                                                   |
  | -------- | ---------------------------------- | ---- | -------------------------------------------------------------------------------------- |
  | code     | number                             | 是   | 本次请求调用的消息码,由通信双方确定。如果接口由IDL工具生成,则消息代码由IDL自动生成。 |
6267 6268
  | data     | [MessageSequence](#messagesequence9) | 是   | 保存待发送数据的&nbsp;MessageSequence对象。                                            |
  | reply    | [MessageSequence](#messagesequence9) | 是   | 接收应答数据的MessageSequence对象。                                                    |
W
wanghaoxu 已提交
6269 6270 6271 6272 6273
  | options  | [MessageOption](#messageoption)    | 是   | 本次请求的同异步模式,默认同步调用。                                                   |
  | callback | AsyncCallback&lt;RequestResult&gt; | 是   | 接收发送结果的回调。                                                                   |

**示例:**

Y
Yippo 已提交
6274
  ```ts
W
wanghaoxu 已提交
6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290
  import FA from "@ohos.ability.featureAbility";
  let proxy;
  let connect = {
      onConnect: function(elementName, remoteProxy) {
          console.log("RpcClient: js onConnect called.");
          proxy = remoteProxy;
      },
      onDisconnect: function(elementName) {
          console.log("RpcClient: onDisconnect");
      },
      onFailed: function() {
          console.log("RpcClient: onFailed");
      }
  };
  let want = {
      "bundleName": "com.ohos.server",
6291
      "abilityName": "com.ohos.server.EntryAbility",
W
wanghaoxu 已提交
6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318
  };
  function sendRequestCallback(result) {
      if (result.errCode === 0) {
          console.log("sendRequest got result");
          result.reply.readException();
          let msg = result.reply.readString();
          console.log("RPCTest: reply msg: " + msg);
      } else {
          console.log("RPCTest: sendRequest failed, errCode: " + result.errCode);
      }
      console.log("RPCTest: sendRequest ends, reclaim parcel");
      result.data.reclaim();
      result.reply.reclaim();
  }
  FA.connectAbility(want, connect);
  let option = new rpc.MessageOption();
  let data = rpc.MessageSequence.create();
  let reply = rpc.MessageSequence.create();
  data.writeInt(1);
  data.writeString("hello");
  try {
      proxy.sendRequest(1, data, reply, option, sendRequestCallback);
  } catch(error) {
      console.info("rpc send sequence request fail, errorCode " + error.code);
      console.info("rpc send sequence request fail, errorMessage " + error.message);
  }
  ```
Z
zengyawen 已提交
6319

W
wanghaoxu 已提交
6320
### sendRequest<sup>8+(deprecated)</sup>
W
wangqinxiao 已提交
6321

6322 6323
>从API version 9 开始不再维护,建议使用[sendMessageRequest](#sendmessagerequest9)类替代。

W
wanghaoxu 已提交
6324
sendRequest(code: number, data: MessageParcel, reply: MessageParcel, options: MessageOption, callback: AsyncCallback&lt;SendRequestResult&gt;): void
C
crazy_hu 已提交
6325

6326
以同步或异步方式向对端进程发送MessageParcel消息。如果为选项设置了异步模式,则立即收到回调,reply报文里没有内容。如果为选项设置了同步模式,则将在sendRequest返回时收到回调,回复内容在reply报文里。
Z
zengyawen 已提交
6327

W
wanghaoxu 已提交
6328
**系统能力**:SystemCapability.Communication.IPC.Core
W
wangqinxiao 已提交
6329

W
wanghaoxu 已提交
6330
**参数:**
Z
zengyawen 已提交
6331

W
wanghaoxu 已提交
6332 6333 6334
  | 参数名   | 类型                                   | 必填 | 说明                                                                                   |
  | -------- | -------------------------------------- | ---- | -------------------------------------------------------------------------------------- |
  | code     | number                                 | 是   | 本次请求调用的消息码,由通信双方确定。如果接口由IDL工具生成,则消息代码由IDL自动生成。 |
6335 6336
  | data     | [MessageParcel](#messageparceldeprecated)        | 是   | 保存待发送数据的&nbsp;MessageParcel对象。                                              |
  | reply    | [MessageParcel](#messageparceldeprecated)        | 是   | 接收应答数据的MessageParcel对象。                                                      |
W
wanghaoxu 已提交
6337 6338
  | options  | [MessageOption](#messageoption)        | 是   | 本次请求的同异步模式,默认同步调用。                                                   |
  | callback | AsyncCallback&lt;SendRequestResult&gt; | 是   | 接收发送结果的回调。                                                                   |
Y
yangguangzhao 已提交
6339 6340

**示例:**
Y
yangguangzhao 已提交
6341

Y
Yippo 已提交
6342
  ```ts
Z
zengyawen 已提交
6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357
  import FA from "@ohos.ability.featureAbility";
  let proxy;
  let connect = {
      onConnect: function(elementName, remoteProxy) {
          console.log("RpcClient: js onConnect called.");
          proxy = remoteProxy;
      },
      onDisconnect: function(elementName) {
          console.log("RpcClient: onDisconnect");
      },
      onFailed: function() {
          console.log("RpcClient: onFailed");
      }
  };
  let want = {
Y
yangguangzhao 已提交
6358
      "bundleName": "com.ohos.server",
6359
      "abilityName": "com.ohos.server.EntryAbility",
Z
zengyawen 已提交
6360
  };
W
wanghaoxu 已提交
6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373
  function sendRequestCallback(result) {
      if (result.errCode === 0) {
          console.log("sendRequest got result");
          result.reply.readException();
          let msg = result.reply.readString();
          console.log("RPCTest: reply msg: " + msg);
      } else {
          console.log("RPCTest: sendRequest failed, errCode: " + result.errCode);
      }
      console.log("RPCTest: sendRequest ends, reclaim parcel");
      result.data.reclaim();
      result.reply.reclaim();
  }
Z
zengyawen 已提交
6374 6375 6376 6377 6378 6379
  FA.connectAbility(want, connect);
  let option = new rpc.MessageOption();
  let data = rpc.MessageParcel.create();
  let reply = rpc.MessageParcel.create();
  data.writeInt(1);
  data.writeString("hello");
W
wanghaoxu 已提交
6380
  proxy.sendRequest(1, data, reply, option, sendRequestCallback);
Z
zengyawen 已提交
6381 6382
  ```

W
wanghaoxu 已提交
6383
### getLocalInterface<sup>9+</sup>
W
wangqinxiao 已提交
6384

W
wanghaoxu 已提交
6385
getLocalInterface(interface: string): IRemoteBroker
Y
yangguangzhao 已提交
6386

W
wanghaoxu 已提交
6387
查询并获取当前接口描述符对应的本地接口对象。
Y
yangguangzhao 已提交
6388 6389 6390

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
6391
**参数:**
W
wangqinxiao 已提交
6392

W
wanghaoxu 已提交
6393 6394 6395
  | 参数名    | 类型   | 必填 | 说明                   |
  | --------- | ------ | ---- | ---------------------- |
  | interface | string | 是   | 需要查询的接口描述符。 |
Y
yangguangzhao 已提交
6396 6397

**返回值:**
W
wangqinxiao 已提交
6398

W
wanghaoxu 已提交
6399 6400 6401 6402
  | 类型          | 说明                                       |
  | ------------- | ------------------------------------------ |
  | IRemoteBroker | 默认返回Null,标识该接口是一个代理侧接口。 |

C
crazy_hu 已提交
6403 6404 6405 6406 6407 6408 6409
**错误码:**

以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)

  | 错误码ID | 错误信息 |
  | ------- | --------  |
  | 1900006 | only remote object permitted |
Y
yangguangzhao 已提交
6410 6411

**示例:**
Y
yangguangzhao 已提交
6412

Y
Yippo 已提交
6413
  ```ts
Z
zengyawen 已提交
6414 6415 6416 6417 6418 6419 6420
  import FA from "@ohos.ability.featureAbility";
  let proxy;
  let connect = {
      onConnect: function(elementName, remoteProxy) {
          console.log("RpcClient: js onConnect called.");
          proxy = remoteProxy;
      },
W
wanghaoxu 已提交
6421
      onDisconnect: function (elementName) {
Z
zengyawen 已提交
6422 6423 6424 6425 6426 6427 6428
          console.log("RpcClient: onDisconnect");
      },
      onFailed: function() {
          console.log("RpcClient: onFailed");
      }
  };
  let want = {
W
wanghaoxu 已提交
6429
      "bundleName":"com.ohos.server",
6430
      "abilityName":"com.ohos.server.EntryAbility",
Z
zengyawen 已提交
6431 6432
  };
  FA.connectAbility(want, connect);
W
wanghaoxu 已提交
6433 6434 6435 6436 6437 6438 6439
  try {
      let broker = proxy.getLocalInterface("testObject");
      console.log("RpcClient: getLocalInterface is " + broker);
  } catch(error) {
      console.info("rpc get local interface fail, errorCode " + error.code);
      console.info("rpc get local interface fail, errorMessage " + error.message);
  }
Z
zengyawen 已提交
6440 6441
  ```

6442
### queryLocalInterface<sup>(deprecated)</sup>
W
wanghaoxu 已提交
6443

6444 6445
>从API version 9 开始不再维护,建议使用[getLocalInterface](#getlocalinterface9)类替代。

W
wanghaoxu 已提交
6446
queryLocalInterface(interface: string): IRemoteBroker
6447

6448
查询并获取当前接口描述符对应的本地接口对象。
6449 6450 6451

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
6452
**参数:**
W
wangqinxiao 已提交
6453

W
wanghaoxu 已提交
6454 6455 6456
  | 参数名    | 类型   | 必填 | 说明                   |
  | --------- | ------ | ---- | ---------------------- |
  | interface | string | 是   | 需要查询的接口描述符。 |
6457 6458

**返回值:**
W
wangqinxiao 已提交
6459

W
wanghaoxu 已提交
6460 6461 6462
  | 类型          | 说明                                       |
  | ------------- | ------------------------------------------ |
  | IRemoteBroker | 默认返回Null,标识该接口是一个代理侧接口。 |
6463 6464 6465

**示例:**

Y
Yippo 已提交
6466
  ```ts
6467 6468 6469 6470 6471 6472 6473
  import FA from "@ohos.ability.featureAbility";
  let proxy;
  let connect = {
      onConnect: function(elementName, remoteProxy) {
          console.log("RpcClient: js onConnect called.");
          proxy = remoteProxy;
      },
W
wanghaoxu 已提交
6474
      onDisconnect: function (elementName) {
6475 6476 6477 6478 6479 6480 6481
          console.log("RpcClient: onDisconnect");
      },
      onFailed: function() {
          console.log("RpcClient: onFailed");
      }
  };
  let want = {
W
wanghaoxu 已提交
6482
      "bundleName":"com.ohos.server",
6483
      "abilityName":"com.ohos.server.EntryAbility",
6484 6485
  };
  FA.connectAbility(want, connect);
W
wanghaoxu 已提交
6486 6487
  let broker = proxy.queryLocalInterface("testObject");
  console.log("RpcClient: queryLocalInterface is " + broker);
6488
  ```
Z
zengyawen 已提交
6489

W
wanghaoxu 已提交
6490 6491 6492
### registerDeathRecipient<sup>9+</sup>

registerDeathRecipient(recipient: DeathRecipient, flags: number): void
Z
zengyawen 已提交
6493

W
wanghaoxu 已提交
6494
注册用于接收远程对象死亡通知的回调。如果与RemoteProxy对象匹配的远程对象进程死亡,则调用此方法。
Z
zengyawen 已提交
6495

Y
yangguangzhao 已提交
6496
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
6497

W
wanghaoxu 已提交
6498
**参数:**
W
wangqinxiao 已提交
6499

W
wanghaoxu 已提交
6500 6501 6502 6503 6504
  | 参数名    | 类型                              | 必填 | 说明           |
  | --------- | --------------------------------- | ---- | -------------- |
  | recipient | [DeathRecipient](#deathrecipient) | 是   | 要注册的回调。 |
  | flags     | number                            | 是   | 死亡通知标志。 |

W
wanghaoxu 已提交
6505 6506
**错误码:**

C
crazy_hu 已提交
6507
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
6508

W
wanghaoxu 已提交
6509 6510 6511
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900008 | proxy or remote object is invalid |
Z
zengyawen 已提交
6512

Y
yangguangzhao 已提交
6513
**示例:**
Y
yangguangzhao 已提交
6514

Y
Yippo 已提交
6515
  ```ts
Z
zengyawen 已提交
6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530
  import FA from "@ohos.ability.featureAbility";
  let proxy;
  let connect = {
      onConnect: function(elementName, remoteProxy) {
          console.log("RpcClient: js onConnect called.");
          proxy = remoteProxy;
      },
      onDisconnect: function(elementName) {
          console.log("RpcClient: onDisconnect");
      },
      onFailed: function() {
          console.log("RpcClient: onFailed");
      }
  };
  let want = {
Y
yangguangzhao 已提交
6531
      "bundleName": "com.ohos.server",
6532
      "abilityName": "com.ohos.server.EntryAbility",
Z
zengyawen 已提交
6533
  };
W
wanghaoxu 已提交
6534 6535 6536 6537
  FA.connectAbility(want, connect);
  class MyDeathRecipient {
      onRemoteDied() {
          console.log("server died");
Z
zengyawen 已提交
6538 6539
      }
  }
W
wanghaoxu 已提交
6540 6541 6542 6543
  let deathRecipient = new MyDeathRecipient();
  try {
      proxy.registerDeathRecippient(deathRecipient, 0);
  } catch(error) {
C
crazy_hu 已提交
6544 6545
      console.info("proxy register deathRecipient fail, errorCode " + error.code);
      console.info("proxy register deathRecipient fail, errorMessage " + error.message);
W
wanghaoxu 已提交
6546
  }
Z
zengyawen 已提交
6547 6548
  ```

6549
### addDeathRecippient<sup>(deprecated)</sup>
Z
zengyawen 已提交
6550

6551 6552
>从API version 9 开始不再维护,建议使用[registerDeathRecipient](#registerdeathrecipient9)类替代。

C
crazy_hu 已提交
6553
addDeathRecipient(recipient: DeathRecipient, flags: number): boolean
Z
zengyawen 已提交
6554

6555
注册用于接收远程对象死亡通知的回调,增加proxy对象上的死亡通知。
Z
zengyawen 已提交
6556

Y
yangguangzhao 已提交
6557
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
6558

W
wanghaoxu 已提交
6559
**参数:**
W
wangqinxiao 已提交
6560

W
wanghaoxu 已提交
6561 6562 6563 6564
  | 参数名    | 类型                              | 必填 | 说明                              |
  | --------- | --------------------------------- | ---- | --------------------------------- |
  | recipient | [DeathRecipient](#deathrecipient) | 是   | 收件人表示要注册的回调。          |
  | flags     | number                            | 是   | 死亡通知标志。保留参数。设置为0。 |
Z
zengyawen 已提交
6565

Y
yangguangzhao 已提交
6566
**返回值:**
W
wangqinxiao 已提交
6567

W
wanghaoxu 已提交
6568 6569
  | 类型    | 说明                                          |
  | ------- | --------------------------------------------- |
6570
  | boolean | true:回调注册成功,false:回调注册失败。|
Z
zengyawen 已提交
6571

Y
yangguangzhao 已提交
6572
**示例:**
Y
yangguangzhao 已提交
6573

Y
Yippo 已提交
6574
  ```ts
Z
zengyawen 已提交
6575 6576 6577 6578 6579 6580 6581
  import FA from "@ohos.ability.featureAbility";
  let proxy;
  let connect = {
      onConnect: function(elementName, remoteProxy) {
          console.log("RpcClient: js onConnect called.");
          proxy = remoteProxy;
      },
W
wanghaoxu 已提交
6582
      onDisconnect: function(elementName) {
Z
zengyawen 已提交
6583 6584 6585 6586 6587 6588 6589
          console.log("RpcClient: onDisconnect");
      },
      onFailed: function() {
          console.log("RpcClient: onFailed");
      }
  };
  let want = {
W
wanghaoxu 已提交
6590
      "bundleName": "com.ohos.server",
6591
      "abilityName": "com.ohos.server.EntryAbility",
Z
zengyawen 已提交
6592 6593
  };
  FA.connectAbility(want, connect);
W
wanghaoxu 已提交
6594 6595 6596 6597 6598 6599 6600
  class MyDeathRecipient {
      onRemoteDied() {
          console.log("server died");
      }
  }
  let deathRecipient = new MyDeathRecipient();
  proxy.addDeathRecippient(deathRecipient, 0);
Z
zengyawen 已提交
6601 6602
  ```

W
wanghaoxu 已提交
6603
### unregisterDeathRecipient<sup>9+</sup>
Z
zengyawen 已提交
6604

C
crazy_hu 已提交
6605
unregisterDeathRecipient(recipient: DeathRecipient, flags: number): boolean
Z
zengyawen 已提交
6606

W
wanghaoxu 已提交
6607
注销用于接收远程对象死亡通知的回调。
Z
zengyawen 已提交
6608

Y
yangguangzhao 已提交
6609
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
6610

W
wanghaoxu 已提交
6611
**参数:**
W
wangqinxiao 已提交
6612

W
wanghaoxu 已提交
6613 6614 6615 6616
  | 参数名    | 类型                              | 必填 | 说明           |
  | --------- | --------------------------------- | ---- | -------------- |
  | recipient | [DeathRecipient](#deathrecipient) | 是   | 要注销的回调。 |
  | flags     | number                            | 是   | 死亡通知标志。 |
Z
zengyawen 已提交
6617

W
wanghaoxu 已提交
6618 6619
**错误码:**

C
crazy_hu 已提交
6620
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wangqinxiao 已提交
6621

W
wanghaoxu 已提交
6622 6623 6624
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900008 | proxy or remote object is invalid |
Z
zengyawen 已提交
6625

Y
yangguangzhao 已提交
6626
**示例:**
Y
yangguangzhao 已提交
6627

Y
Yippo 已提交
6628
  ```ts
Z
zengyawen 已提交
6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643
  import FA from "@ohos.ability.featureAbility";
  let proxy;
  let connect = {
      onConnect: function(elementName, remoteProxy) {
          console.log("RpcClient: js onConnect called.");
          proxy = remoteProxy;
      },
      onDisconnect: function(elementName) {
          console.log("RpcClient: onDisconnect");
      },
      onFailed: function() {
          console.log("RpcClient: onFailed");
      }
  };
  let want = {
Y
yangguangzhao 已提交
6644
      "bundleName": "com.ohos.server",
6645
      "abilityName": "com.ohos.server.EntryAbility",
Z
zengyawen 已提交
6646 6647 6648 6649
  };
  FA.connectAbility(want, connect);
  class MyDeathRecipient {
      onRemoteDied() {
Y
yangguangzhao 已提交
6650
          console.log("server died");
Z
zengyawen 已提交
6651 6652 6653
      }
  }
  let deathRecipient = new MyDeathRecipient();
W
wanghaoxu 已提交
6654 6655 6656 6657
  try {
      proxy.registerDeathRecippient(deathRecipient, 0);
      proxy.unregisterDeathRecippient(deathRecipient, 0);
  } catch(error) {
C
crazy_hu 已提交
6658 6659
      console.info("proxy register deathRecipient fail, errorCode " + error.code);
      console.info("proxy register deathRecipient fail, errorMessage " + error.message);
W
wanghaoxu 已提交
6660
  }
Z
zengyawen 已提交
6661 6662
  ```

6663
### removeDeathRecipient<sup>(deprecated)</sup>
Z
zengyawen 已提交
6664

6665 6666
>从API version 9 开始不再维护,建议使用[unregisterDeathRecipient](#unregisterdeathrecipient9)类替代。

C
crazy_hu 已提交
6667
removeDeathRecipient(recipient: DeathRecipient, flags: number): boolean
Z
zengyawen 已提交
6668

6669
注销用于接收远程对象死亡通知的回调。
Z
zengyawen 已提交
6670

Y
yangguangzhao 已提交
6671
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
6672

W
wanghaoxu 已提交
6673
**参数:**
W
wangqinxiao 已提交
6674

W
wanghaoxu 已提交
6675 6676 6677 6678
  | 参数名    | 类型                              | 必填 | 说明                              |
  | --------- | --------------------------------- | ---- | --------------------------------- |
  | recipient | [DeathRecipient](#deathrecipient) | 是   | 要注销的死亡回调。                |
  | flags     | number                            | 是   | 死亡通知标志。保留参数。设置为0。 |
Z
zengyawen 已提交
6679

Y
yangguangzhao 已提交
6680
**返回值:**
W
wangqinxiao 已提交
6681

W
wanghaoxu 已提交
6682 6683
  | 类型    | 说明                                          |
  | ------- | --------------------------------------------- |
6684
  | boolean | true:回调注销成功,false:回调注销失败。|
Z
zengyawen 已提交
6685

Y
yangguangzhao 已提交
6686
**示例:**
Y
yangguangzhao 已提交
6687

Y
Yippo 已提交
6688
  ```ts
Z
zengyawen 已提交
6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703
  import FA from "@ohos.ability.featureAbility";
  let proxy;
  let connect = {
      onConnect: function(elementName, remoteProxy) {
          console.log("RpcClient: js onConnect called.");
          proxy = remoteProxy;
      },
      onDisconnect: function(elementName) {
          console.log("RpcClient: onDisconnect");
      },
      onFailed: function() {
          console.log("RpcClient: onFailed");
      }
  };
  let want = {
Y
yangguangzhao 已提交
6704
      "bundleName": "com.ohos.server",
6705
      "abilityName": "com.ohos.server.EntryAbility",
Z
zengyawen 已提交
6706 6707 6708 6709
  };
  FA.connectAbility(want, connect);
  class MyDeathRecipient {
      onRemoteDied() {
Y
yangguangzhao 已提交
6710
          console.log("server died");
Z
zengyawen 已提交
6711 6712 6713 6714 6715 6716 6717
      }
  }
  let deathRecipient = new MyDeathRecipient();
  proxy.addDeathRecippient(deathRecipient, 0);
  proxy.removeDeathRecipient(deathRecipient, 0);
  ```

W
wanghaoxu 已提交
6718
### getDescriptor<sup>9+</sup>
Z
zengyawen 已提交
6719

C
crazy_hu 已提交
6720
getDescriptor(): string
Z
zengyawen 已提交
6721

6722
获取对象的接口描述符,接口描述符为字符串。
Z
zengyawen 已提交
6723

Y
yangguangzhao 已提交
6724
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
6725

Y
yangguangzhao 已提交
6726
**返回值:**
W
wangqinxiao 已提交
6727

W
wanghaoxu 已提交
6728 6729 6730 6731
  | 类型   | 说明             |
  | ------ | ---------------- |
  | string | 返回接口描述符。 |

W
wanghaoxu 已提交
6732 6733
**错误码:**

C
crazy_hu 已提交
6734
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
6735

W
wanghaoxu 已提交
6736 6737 6738
  | 错误码ID | 错误信息 |
  | -------- | ------- |
  | 1900008 | proxy or remote object is invalid |
C
crazy_hu 已提交
6739
  | 1900007 | communication failed              |
W
wanghaoxu 已提交
6740 6741 6742

**示例:**

Y
Yippo 已提交
6743
  ```ts
W
wanghaoxu 已提交
6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759
  import FA from "@ohos.ability.featureAbility";
  let proxy;
  let connect = {
      onConnect: function(elementName, remoteProxy) {
          console.log("RpcClient: js onConnect called.");
          proxy = remoteProxy;
      },
      onDisconnect: function(elementName) {
          console.log("RpcClient: onDisconnect");
      },
      onFailed: function() {
          console.log("RpcClient: onFailed");
      }
  };
  let want = {
      "bundleName": "com.ohos.server",
6760
      "abilityName": "com.ohos.server.EntryAbility",
W
wanghaoxu 已提交
6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771
  };
  FA.connectAbility(want, connect);
  try {
      let descriptor = proxy.getDescriptor();
      console.log("RpcClient: descriptor is " + descriptor);
  } catch(error) {
      console.info("rpc get interface descriptor fail, errorCode " + error.code);
      console.info("rpc get interface descriptor fail, errorMessage " + error.message);
  }
  ```

6772
### getInterfaceDescriptor<sup>(deprecated)</sup>
W
wanghaoxu 已提交
6773

6774 6775
>从API version 9 开始不再维护,建议使用[getDescriptor](#getdescriptor9)类替代。

W
wanghaoxu 已提交
6776 6777
getInterfaceDescriptor(): string

6778
查询当前代理对象接口的描述符。
W
wanghaoxu 已提交
6779 6780 6781 6782 6783 6784 6785

**系统能力**:SystemCapability.Communication.IPC.Core

**返回值:**

  | 类型   | 说明               |
  | ------ | ------------------ |
Y
yangguangzhao 已提交
6786
  | string | 当前的接口描述符。 |
Z
zengyawen 已提交
6787

Y
yangguangzhao 已提交
6788
**示例:**
Y
yangguangzhao 已提交
6789

Y
Yippo 已提交
6790
  ```ts
Z
zengyawen 已提交
6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805
  import FA from "@ohos.ability.featureAbility";
  let proxy;
  let connect = {
      onConnect: function(elementName, remoteProxy) {
          console.log("RpcClient: js onConnect called.");
          proxy = remoteProxy;
      },
      onDisconnect: function(elementName) {
          console.log("RpcClient: onDisconnect");
      },
      onFailed: function() {
          console.log("RpcClient: onFailed");
      }
  };
  let want = {
Y
yangguangzhao 已提交
6806
      "bundleName": "com.ohos.server",
6807
      "abilityName": "com.ohos.server.EntryAbility",
Z
zengyawen 已提交
6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819
  };
  FA.connectAbility(want, connect);
  let descriptor = proxy.getInterfaceDescriptor();
  console.log("RpcClient: descriptor is " + descriptor);
  ```

### isObjectDead

isObjectDead(): boolean

指示对应的RemoteObject是否死亡。

Y
yangguangzhao 已提交
6820
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
6821

Y
yangguangzhao 已提交
6822
**返回值:**
W
wangqinxiao 已提交
6823

W
wanghaoxu 已提交
6824 6825
  | 类型    | 说明                                                      |
  | ------- | --------------------------------------------------------- |
6826
  | boolean | true:对应的对象已经死亡,false:对应的对象未死亡|
Z
zengyawen 已提交
6827

Y
yangguangzhao 已提交
6828
**示例:**
Y
yangguangzhao 已提交
6829

Y
Yippo 已提交
6830
  ```ts
Z
zengyawen 已提交
6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845
  import FA from "@ohos.ability.featureAbility";
  let proxy;
  let connect = {
      onConnect: function(elementName, remoteProxy) {
          console.log("RpcClient: js onConnect called.");
          proxy = remoteProxy;
      },
      onDisconnect: function(elementName) {
          console.log("RpcClient: onDisconnect");
      },
      onFailed: function() {
          console.log("RpcClient: onFailed");
      }
  };
  let want = {
Y
yangguangzhao 已提交
6846
      "bundleName": "com.ohos.server",
6847
      "abilityName": "com.ohos.server.EntryAbility",
Z
zengyawen 已提交
6848 6849 6850 6851 6852 6853 6854 6855 6856 6857
  };
  FA.connectAbility(want, connect);
  let isDead = proxy.isObjectDead();
  console.log("RpcClient: isObjectDead is " + isDead);
  ```

## MessageOption

公共消息选项(int标志,int等待时间),使用标志中指定的标志构造指定的MessageOption对象。

Y
yangguangzhao 已提交
6858
**系统能力**:以下各项对应的系统能力均为SystemCapability.Communication.IPC.Core。
Z
zengyawen 已提交
6859

6860
  | 名称          | 默认值   | 说明                                                        |
W
wanghaoxu 已提交
6861
  | ------------- | ---- | ----------------------------------------------------------- |
6862 6863
  | TF_SYNC       | 0    | 同步调用标识。                                                  |
  | TF_ASYNC      | 1    | 异步调用标识。                                                  |
W
wanghaoxu 已提交
6864
  | TF_ACCEPT_FDS | 0x10 | 指示sendMessageRequest<sup>9+</sup>接口可以返回文件描述符。 |
6865
  | TF_WAIT_TIME  | 8    | 默认等待时间(单位/秒)。                                          |
W
wanghaoxu 已提交
6866 6867 6868 6869 6870 6871 6872 6873 6874 6875


### constructor<sup>9+</sup>

constructor(async?: boolean);

MessageOption构造函数。

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
6876
**参数:**
W
wanghaoxu 已提交
6877 6878 6879 6880

  | 参数名    | 类型   | 必填 | 说明                                   |
  | --------- | ------ | ---- | -------------------------------------- |
  | syncFlags | number | 否   | 同步调用或异步调用标志。默认同步调用。 |
Z
zengyawen 已提交
6881 6882


6883 6884
**示例:**

Y
Yippo 已提交
6885
  ```ts
6886 6887 6888 6889 6890 6891 6892
  class TestRemoteObject extends rpc.MessageOption {
    constructor(async) {
        super(async);
    }
  }
  ```

Z
zengyawen 已提交
6893 6894
### constructor

C
crazy_hu 已提交
6895
constructor(syncFlags?: number, waitTime?: number)
Z
zengyawen 已提交
6896 6897 6898

MessageOption构造函数。

Y
yangguangzhao 已提交
6899 6900
**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
6901
**参数:**
W
wangqinxiao 已提交
6902

W
wanghaoxu 已提交
6903 6904 6905 6906 6907
  | 参数名    | 类型   | 必填 | 说明                                          |
  | --------- | ------ | ---- | --------------------------------------------- |
  | syncFlags | number | 否   | 同步调用或异步调用标志。默认同步调用。        |
  | waitTime  | number | 否   | 调用rpc最长等待时间。默认&nbsp;TF_WAIT_TIME。 |

6908
**示例:**
W
wanghaoxu 已提交
6909

Y
Yippo 已提交
6910
  ```ts
6911 6912 6913 6914 6915 6916
  class TestRemoteObject extends rpc.MessageOption {
    constructor(syncFlags,waitTime) {
        super(syncFlags,waitTime);
    }
  }
  ```
W
wanghaoxu 已提交
6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928
### isAsync<sup>9+</sup>

isAsync(): boolean;

获取SendMessageRequest调用中确定同步或是异步的标志。

**系统能力**:SystemCapability.Communication.IPC.Core

**返回值:**

  | 类型    | 说明                                 |
  | ------- | ------------------------------------ |
6929
  | boolean | true:同步调用成功,false:异步调用成功。 |
W
wanghaoxu 已提交
6930

6931 6932
**示例:**

Y
Yippo 已提交
6933
  ```ts
6934 6935 6936
  let option = new rpc.MessageOption();
  let isAsync = option.isAsync();
  ```
W
wanghaoxu 已提交
6937 6938 6939 6940 6941 6942

### setAsync<sup>9+</sup>

setAsync(async: boolean): void;

设置SendMessageRequest调用中确定同步或是异步的标志。
Z
zengyawen 已提交
6943

W
wanghaoxu 已提交
6944 6945
**系统能力**:SystemCapability.Communication.IPC.Core

6946 6947
**示例:**

Y
Yippo 已提交
6948
  ```ts
6949 6950 6951 6952
  let option = new rpc.MessageOption();
  let setAsync = option.setAsync(true);
  console.log("Set synchronization flag");
  ```
Z
zengyawen 已提交
6953 6954 6955 6956 6957 6958 6959

### getFlags

getFlags(): number

获取同步调用或异步调用标志。

Y
yangguangzhao 已提交
6960
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
6961

Y
yangguangzhao 已提交
6962
**返回值:**
W
wangqinxiao 已提交
6963

W
wanghaoxu 已提交
6964 6965
  | 类型   | 说明                                 |
  | ------ | ------------------------------------ |
Y
yangguangzhao 已提交
6966
  | number | 调用成功返回同步调用或异步调用标志。 |
Z
zengyawen 已提交
6967

6968
**示例:**
Z
zengyawen 已提交
6969

Y
Yippo 已提交
6970
  ```ts
6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983
  try {
      let option = new rpc.MessageOption();
      console.info("create object successfully.");
      let flog = option.getFlags();
      console.info("run getFlags success, flog is " + flog);
      option.setFlags(1)
      console.info("run setFlags success");
      let flog2 = option.getFlags();
      console.info("run getFlags success, flog2 is " + flog2);
  } catch (error) {
      console.info("error " + error);
  }
  ```
6984

Z
zengyawen 已提交
6985 6986 6987 6988 6989 6990
### setFlags

setFlags(flags: number): void

设置同步调用或异步调用标志。

Y
yangguangzhao 已提交
6991 6992
**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
6993
**参数:**
W
wangqinxiao 已提交
6994

W
wanghaoxu 已提交
6995 6996 6997
  | 参数名 | 类型   | 必填 | 说明                     |
  | ------ | ------ | ---- | ------------------------ |
  | flags  | number | 是   | 同步调用或异步调用标志。 |
Z
zengyawen 已提交
6998

6999 7000
**示例:**

Y
Yippo 已提交
7001
  ```ts
7002 7003 7004 7005 7006 7007 7008 7009 7010 7011
  try {
      let option = new rpc.MessageOption();
      option.setFlags(1)
      console.info("run setFlags success");
      let flog = option.getFlags();
      console.info("run getFlags success, flog is " + flog);
  } catch (error) {
      console.info("error " + error);
  }
  ```
Z
zengyawen 已提交
7012 7013 7014 7015 7016 7017 7018

### getWaitTime

getWaitTime(): number

获取rpc调用的最长等待时间。

Y
yangguangzhao 已提交
7019 7020
**系统能力**:SystemCapability.Communication.IPC.Core

Y
yangguangzhao 已提交
7021
**返回值:**
W
wangqinxiao 已提交
7022

W
wanghaoxu 已提交
7023 7024
  | 类型   | 说明              |
  | ------ | ----------------- |
Y
yangguangzhao 已提交
7025
  | number | rpc最长等待时间。 |
Z
zengyawen 已提交
7026

7027 7028
**示例:**

Y
Yippo 已提交
7029
  ```ts
7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040
  try {
      let option = new rpc.MessageOption();
      let time = option.getWaitTime();
      console.info("run getWaitTime success");
      option.setWaitTime(16);
      let time2 = option.getWaitTime();
      console.info("run getWaitTime success, time is " + time);
  } catch (error) {
      console.info("error " + error);
  }
  ```
Z
zengyawen 已提交
7041 7042 7043 7044 7045 7046 7047

### setWaitTime

setWaitTime(waitTime: number): void

设置rpc调用最长等待时间。

Y
yangguangzhao 已提交
7048 7049
**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
7050
**参数:**
W
wangqinxiao 已提交
7051

W
wanghaoxu 已提交
7052 7053 7054
  | 参数名   | 类型   | 必填 | 说明                  |
  | -------- | ------ | ---- | --------------------- |
  | waitTime | number | 是   | rpc调用最长等待时间。 |
Z
zengyawen 已提交
7055

7056 7057
**示例:**

Y
Yippo 已提交
7058
  ```ts
7059 7060 7061 7062 7063 7064 7065 7066 7067
  try {
      let option = new rpc.MessageOption();
      option.setWaitTime(16);
      let time = option.getWaitTime();
      console.info("run getWaitTime success, time is " + time);
  } catch (error) {
      console.info("error " + error);
  }
  ```
Z
zengyawen 已提交
7068 7069 7070 7071 7072 7073 7074 7075 7076

## IPCSkeleton

用于获取IPC上下文信息,包括获取UID和PID、获取本端和对端设备ID、检查接口调用是否在同一设备上。

### getContextObject

static getContextObject(): IRemoteObject

7077
静态方法,获取系统能力的管理者。
Z
zengyawen 已提交
7078

Y
yangguangzhao 已提交
7079
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
7080

Y
yangguangzhao 已提交
7081
**返回值:**
W
wangqinxiao 已提交
7082

W
wanghaoxu 已提交
7083 7084
  | 类型                            | 说明                 |
  | ------------------------------- | -------------------- |
Y
yangguangzhao 已提交
7085
  | [IRemoteObject](#iremoteobject) | 返回系统能力管理者。 |
Z
zengyawen 已提交
7086

Y
yangguangzhao 已提交
7087
**示例:**
Y
yangguangzhao 已提交
7088

Y
Yippo 已提交
7089
  ```ts
Z
zengyawen 已提交
7090 7091 7092 7093 7094 7095 7096 7097
  let samgr = rpc.IPCSkeleton.getContextObject();
  console.log("RpcServer: getContextObject result: " + samgr);
  ```

### getCallingPid

static getCallingPid(): number

7098
静态方法,获取调用者的PID。此方法由RemoteObject对象在onRemoteRequest方法中调用,不在IPC上下文环境(onRemoteRequest)中调用则返回本进程的PID。
Z
zengyawen 已提交
7099

Y
yangguangzhao 已提交
7100
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
7101

Y
yangguangzhao 已提交
7102
**返回值:**
W
wangqinxiao 已提交
7103

W
wanghaoxu 已提交
7104 7105
  | 类型   | 说明              |
  | ------ | ----------------- |
Y
yangguangzhao 已提交
7106
  | number | 返回调用者的PID。 |
Z
zengyawen 已提交
7107

Y
yangguangzhao 已提交
7108
**示例:**
Y
yangguangzhao 已提交
7109

Y
Yippo 已提交
7110
  ```ts
Z
zengyawen 已提交
7111
  class Stub extends rpc.RemoteObject {
7112
      onRemoteMessageRequest(code, data, reply, option) {
Z
zengyawen 已提交
7113 7114 7115 7116
          let callerPid = rpc.IPCSkeleton.getCallingPid();
          console.log("RpcServer: getCallingPid result: " + callerPid);
          return true;
      }
W
wanghaoxu 已提交
7117
 }
Z
zengyawen 已提交
7118 7119 7120 7121 7122 7123
  ```

### getCallingUid

static getCallingUid(): number

7124
静态方法,获取调用者的UID。此方法由RemoteObject对象在onRemoteRequest方法中调用,不在IPC上下文环境(onRemoteRequest)中调用则返回本进程的UID。
Z
zengyawen 已提交
7125

Y
yangguangzhao 已提交
7126
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
7127

Y
yangguangzhao 已提交
7128
**返回值:**
W
wangqinxiao 已提交
7129

W
wanghaoxu 已提交
7130 7131
  | 类型   | 说明              |
  | ------ | ----------------- |
Y
yangguangzhao 已提交
7132
  | number | 返回调用者的UID。 |
Z
zengyawen 已提交
7133

Y
yangguangzhao 已提交
7134
**示例:**
Y
yangguangzhao 已提交
7135

Y
Yippo 已提交
7136
  ```ts
Z
zengyawen 已提交
7137
  class Stub extends rpc.RemoteObject {
7138
      onRemoteMessageRequest(code, data, reply, option) {
Z
zengyawen 已提交
7139 7140 7141 7142 7143 7144 7145
          let callerUid = rpc.IPCSkeleton.getCallingUid();
          console.log("RpcServer: getCallingUid result: " + callerUid);
          return true;
      }
  }
  ```

Y
yangguangzhao 已提交
7146
### getCallingTokenId<sup>8+</sup>
Y
yangguangzhao 已提交
7147 7148 7149

static getCallingTokenId(): number;

7150
静态方法,获取调用者的TokenId,用于被调用方对调用方的身份校验。
Y
yangguangzhao 已提交
7151

7152
**系统能力**:SystemCapability.Communication.IPC.Core
Y
yangguangzhao 已提交
7153

C
crazy_hu 已提交
7154
**返回值:**
7155

C
crazy_hu 已提交
7156 7157 7158
   | 类型   | 说明                  |
   | ------ | --------------------- |
   | number | 返回调用者的TokenId。 |
7159

C
crazy_hu 已提交
7160
**示例:**
Y
yangguangzhao 已提交
7161

Y
Yippo 已提交
7162
  ```ts
Y
yangguangzhao 已提交
7163
  class Stub extends rpc.RemoteObject {
7164
      onRemoteMessageRequest(code, data, reply, option) {
Y
yangguangzhao 已提交
7165 7166 7167 7168 7169 7170 7171
          let callerTokenId = rpc.IPCSkeleton.getCallingTokenId();
          console.log("RpcServer: getCallingTokenId result: " + callerTokenId);
          return true;
      }
  }
  ```

Z
zengyawen 已提交
7172

Y
yangguangzhao 已提交
7173
### getCallingDeviceID
Z
zengyawen 已提交
7174 7175 7176

static getCallingDeviceID(): string

7177
静态方法,获取调用者进程所在的设备ID。
Z
zengyawen 已提交
7178

Y
yangguangzhao 已提交
7179
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
7180

Y
yangguangzhao 已提交
7181
**返回值:**
W
wangqinxiao 已提交
7182

W
wanghaoxu 已提交
7183 7184
  | 类型   | 说明                         |
  | ------ | ---------------------------- |
Y
yangguangzhao 已提交
7185
  | string | 返回调用者进程所在的设备ID。 |
Z
zengyawen 已提交
7186

Y
yangguangzhao 已提交
7187
**示例:**
Y
yangguangzhao 已提交
7188

Y
Yippo 已提交
7189
  ```ts
Z
zengyawen 已提交
7190
  class Stub extends rpc.RemoteObject {
7191
      onRemoteMessageRequest(code, data, reply, option) {
Y
yangguangzhao 已提交
7192
          let callerDeviceID = rpc.IPCSkeleton.getCallingDeviceID();
Z
zengyawen 已提交
7193 7194 7195 7196 7197 7198 7199 7200 7201 7202
          console.log("RpcServer: callerDeviceID is: " + callerDeviceID);
          return true;
      }
  }
  ```

### getLocalDeviceID

static getLocalDeviceID(): string

7203
静态方法,获取本端设备ID。
Z
zengyawen 已提交
7204

Y
yangguangzhao 已提交
7205
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
7206

Y
yangguangzhao 已提交
7207
**返回值:**
W
wangqinxiao 已提交
7208

W
wanghaoxu 已提交
7209 7210
  | 类型   | 说明               |
  | ------ | ------------------ |
Y
yangguangzhao 已提交
7211
  | string | 返回本地设备的ID。 |
Z
zengyawen 已提交
7212

Y
yangguangzhao 已提交
7213
**示例:**
Y
yangguangzhao 已提交
7214

Y
Yippo 已提交
7215
  ```ts
Z
zengyawen 已提交
7216
  class Stub extends rpc.RemoteObject {
7217
      onRemoteMessageRequest(code, data, reply, option) {
Z
zengyawen 已提交
7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228
          let localDeviceID = rpc.IPCSkeleton.getLocalDeviceID();
          console.log("RpcServer: localDeviceID is: " + localDeviceID);
          return true;
      }
  }
  ```

### isLocalCalling

static isLocalCalling(): boolean

7229
静态方法,检查当前通信对端是否是本设备的进程。
Z
zengyawen 已提交
7230

Y
yangguangzhao 已提交
7231
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
7232

Y
yangguangzhao 已提交
7233
**返回值:**
W
wangqinxiao 已提交
7234

W
wanghaoxu 已提交
7235 7236
  | 类型    | 说明                                                      |
  | ------- | --------------------------------------------------------- |
7237
  | boolean | true:调用在同一台设备,false:调用未在同一台设备。|
Z
zengyawen 已提交
7238

Y
yangguangzhao 已提交
7239
**示例:**
Y
yangguangzhao 已提交
7240

Y
Yippo 已提交
7241
  ```ts
Z
zengyawen 已提交
7242
  class Stub extends rpc.RemoteObject {
7243
      onRemoteMessageRequest(code, data, reply, option) {
Z
zengyawen 已提交
7244 7245 7246 7247 7248 7249 7250
          let isLocalCalling = rpc.IPCSkeleton.isLocalCalling();
          console.log("RpcServer: isLocalCalling is: " + isLocalCalling);
          return true;
      }
  }
  ```

W
wanghaoxu 已提交
7251
### flushCmdBuffer<sup>9+</sup>
Z
zengyawen 已提交
7252

C
crazy_hu 已提交
7253
static flushCmdBuffer(object: IRemoteObject): void
Z
zengyawen 已提交
7254

7255
静态方法,将所有挂起的命令从指定的RemoteProxy刷新到相应的RemoteObject。建议在执行任何时间敏感操作之前调用此方法。
Z
zengyawen 已提交
7256

Y
yangguangzhao 已提交
7257 7258
**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
7259
**参数:**
W
wanghaoxu 已提交
7260 7261 7262 7263 7264 7265 7266 7267

  | 参数名 | 类型                            | 必填 | 说明                |
  | ------ | ------------------------------- | ---- | ------------------- |
  | object | [IRemoteObject](#iremoteobject) | 是   | 指定的RemoteProxy。 |


**示例:**

Y
Yippo 已提交
7268
  ```ts
W
wanghaoxu 已提交
7269 7270 7271 7272 7273 7274 7275 7276 7277
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
  }
  let remoteObject = new TestRemoteObject("aaa");
  try {
      rpc.IPCSkeleton.flushCmdBuffer(remoteObject);
  } catch(error) {
C
crazy_hu 已提交
7278 7279
      console.info("proxy set calling identity fail, errorCode " + error.code);
      console.info("proxy set calling identity fail, errorMessage " + error.message);
W
wanghaoxu 已提交
7280 7281
  }
  ```
W
wangqinxiao 已提交
7282

7283
### flushCommands<sup>(deprecated)</sup>
W
wanghaoxu 已提交
7284

7285 7286
>从API version 9 开始不再维护,建议使用[flushCmdBuffer](#flushcmdbuffer9)类替代。

C
crazy_hu 已提交
7287
static flushCommands(object: IRemoteObject): number
W
wanghaoxu 已提交
7288

7289
静态方法,将所有挂起的命令从指定的RemoteProxy刷新到相应的RemoteObject。建议在执行任何时间敏感操作之前调用此方法。
W
wanghaoxu 已提交
7290 7291 7292

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
7293
**参数:**
W
wanghaoxu 已提交
7294 7295 7296 7297

  | 参数名 | 类型                            | 必填 | 说明                |
  | ------ | ------------------------------- | ---- | ------------------- |
  | object | [IRemoteObject](#iremoteobject) | 是   | 指定的RemoteProxy。 |
Z
zengyawen 已提交
7298

Y
yangguangzhao 已提交
7299
**返回值:**
W
wangqinxiao 已提交
7300

W
wanghaoxu 已提交
7301 7302
  | 类型   | 说明                                                                              |
  | ------ | --------------------------------------------------------------------------------- |
Y
yangguangzhao 已提交
7303
  | number | 如果操作成功,返回0;如果输入对象为空或RemoteObject,或者操作失败,返回错误代码。 |
Z
zengyawen 已提交
7304

Y
yangguangzhao 已提交
7305
**示例:**
Y
yangguangzhao 已提交
7306

Y
Yippo 已提交
7307
  ```ts
Y
yangguangzhao 已提交
7308 7309
  class MyDeathRecipient {
      onRemoteDied() {
Y
yangguangzhao 已提交
7310
          console.log("server died");
Y
yangguangzhao 已提交
7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327
      }
  }
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
      addDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      removeDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      isObjectDead(): boolean {
          return false;
      }
  }
  let remoteObject = new TestRemoteObject("aaa");
Z
zengyawen 已提交
7328 7329 7330 7331 7332 7333 7334 7335
  let ret = rpc.IPCSkeleton.flushCommands(remoteObject);
  console.log("RpcServer: flushCommands result: " + ret);
  ```

### resetCallingIdentity

static resetCallingIdentity(): string

7336
静态方法,将远程用户的UID和PID替换为本地用户的UID和PID。它可以用于身份验证等场景。
Z
zengyawen 已提交
7337

Y
yangguangzhao 已提交
7338
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
7339

Y
yangguangzhao 已提交
7340
**返回值:**
W
wangqinxiao 已提交
7341

W
wanghaoxu 已提交
7342 7343
  | 类型   | 说明                                 |
  | ------ | ------------------------------------ |
Y
yangguangzhao 已提交
7344
  | string | 返回包含远程用户的UID和PID的字符串。 |
Z
zengyawen 已提交
7345

Y
yangguangzhao 已提交
7346
**示例:**
Y
yangguangzhao 已提交
7347

Y
Yippo 已提交
7348
  ```ts
Z
zengyawen 已提交
7349
  class Stub extends rpc.RemoteObject {
7350
      onRemoteMessageRequest(code, data, reply, option) {
Z
zengyawen 已提交
7351 7352 7353 7354 7355 7356 7357 7358
          let callingIdentity = rpc.IPCSkeleton.resetCallingIdentity();
          console.log("RpcServer: callingIdentity is: " + callingIdentity);
          return true;
      }
  }
  ```


W
wanghaoxu 已提交
7359 7360
### restoreCallingIdentity<sup>9+</sup>

C
crazy_hu 已提交
7361
static restoreCallingIdentity(identity: string): void
W
wanghaoxu 已提交
7362

7363
静态方法,将远程用户的UID和PID替换为本地用户的UID和PID。它可以用于身份验证等场景。
W
wanghaoxu 已提交
7364 7365 7366

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
7367
**参数:**
W
wanghaoxu 已提交
7368 7369 7370 7371 7372 7373 7374

  | 参数名   | 类型   | 必填 | 说明                                                               |
  | -------- | ------ | ---- | ------------------------------------------------------------------ |
  | identity | string | 是   | 标识表示包含远程用户UID和PID的字符串。由resetCallingIdentity返回。 |

**示例:**

Y
Yippo 已提交
7375
  ```ts
W
wanghaoxu 已提交
7376
  class Stub extends rpc.RemoteObject {
7377
      onRemoteMessageRequest(code, data, reply, option) {
W
wanghaoxu 已提交
7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389
          let callingIdentity = null;
          try {
              callingIdentity = rpc.IPCSkeleton.resetCallingIdentity();
              console.log("RpcServer: callingIdentity is: " + callingIdentity);
          } finally {
              rpc.IPCSkeleton.restoreCallingIdentity("callingIdentity ");
          }
          return true;
      }
  }
  ```

7390
### setCallingIdentity<sup>(deprecated)</sup>
Z
zengyawen 已提交
7391

7392 7393
>从API version 9 开始不再维护,建议使用[restoreCallingIdentity](#restorecallingidentity9)类替代。

C
crazy_hu 已提交
7394
static setCallingIdentity(identity: string): boolean
Z
zengyawen 已提交
7395

7396
静态方法,将UID和PID恢复为远程用户的UID和PID。它通常在使用resetCallingIdentity后调用,需要resetCallingIdentity返回的远程用户的UID和PID。
Z
zengyawen 已提交
7397

Y
yangguangzhao 已提交
7398 7399
**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
7400
**参数:**
W
wangqinxiao 已提交
7401

W
wanghaoxu 已提交
7402 7403 7404
  | 参数名   | 类型   | 必填 | 说明                                                               |
  | -------- | ------ | ---- | ------------------------------------------------------------------ |
  | identity | string | 是   | 标识表示包含远程用户UID和PID的字符串。由resetCallingIdentity返回。 |
Z
zengyawen 已提交
7405

Y
yangguangzhao 已提交
7406
**返回值:**
W
wangqinxiao 已提交
7407

W
wanghaoxu 已提交
7408 7409
  | 类型    | 说明                                      |
  | ------- | ----------------------------------------- |
7410
  | boolean | true:设置成功,false:设置失败。|
Z
zengyawen 已提交
7411

Y
yangguangzhao 已提交
7412
**示例:**
Y
yangguangzhao 已提交
7413

Y
Yippo 已提交
7414
  ```ts
Z
zengyawen 已提交
7415
  class Stub extends rpc.RemoteObject {
7416
      onRemoteMessageRequest(code, data, reply, option) {
Z
zengyawen 已提交
7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439
          let callingIdentity = null;
          try {
              callingIdentity = rpc.IPCSkeleton.resetCallingIdentity();
              console.log("RpcServer: callingIdentity is: " + callingIdentity);
          } finally {
              let ret = rpc.IPCSkeleton.setCallingIdentity("callingIdentity ");
              console.log("RpcServer: setCallingIdentity is: " + ret);
          }
          return true;
      }
  }
  ```

## RemoteObject

实现远程对象。服务提供者必须继承此类。

### constructor

constructor(descriptor: string)

RemoteObject构造函数。

Y
yangguangzhao 已提交
7440 7441
**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
7442
**参数:**
W
wangqinxiao 已提交
7443

W
wanghaoxu 已提交
7444 7445 7446
  | 参数名     | 类型   | 必填 | 说明         |
  | ---------- | ------ | ---- | ------------ |
  | descriptor | string | 是   | 接口描述符。 |
Z
zengyawen 已提交
7447 7448


Y
yangguangzhao 已提交
7449
### sendRequest<sup>(deprecated)</sup>
Z
zengyawen 已提交
7450

7451 7452
>从API version 9 开始不再维护,建议使用[sendMessageRequest](#sendmessagerequest9)类替代。

C
crazy_hu 已提交
7453
sendRequest(code: number, data: MessageParcel, reply: MessageParcel, options: MessageOption): boolean
W
wangqinxiao 已提交
7454

Z
zengyawen 已提交
7455 7456
以同步或异步方式向对端进程发送MessageParcel消息。如果为选项设置了异步模式,则期约立即兑现,reply报文里没有内容。如果为选项设置了同步模式,则期约将在sendRequest返回时兑现,回复内容在reply报文里。

Y
yangguangzhao 已提交
7457 7458
**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
7459
**参数:**
W
wangqinxiao 已提交
7460

W
wanghaoxu 已提交
7461 7462 7463
  | 参数名  | 类型                            | 必填 | 说明                                                                                   |
  | ------- | ------------------------------- | ---- | -------------------------------------------------------------------------------------- |
  | code    | number                          | 是   | 本次请求调用的消息码,由通信双方确定。如果接口由IDL工具生成,则消息代码由IDL自动生成。 |
7464 7465
  | data    | [MessageParcel](#messageparceldeprecated) | 是   | 保存待发送数据的&nbsp;MessageParcel对象。                                              |
  | reply   | [MessageParcel](#messageparceldeprecated) | 是   | 接收应答数据的MessageParcel对象。                                                      |
W
wanghaoxu 已提交
7466
  | options | [MessageOption](#messageoption) | 是   | 本次请求的同异步模式,默认同步调用。                                                   |
Z
zengyawen 已提交
7467

Y
yangguangzhao 已提交
7468
**返回值:**
W
wangqinxiao 已提交
7469

W
wanghaoxu 已提交
7470 7471
  | 类型    | 说明                                          |
  | ------- | --------------------------------------------- |
7472
  | boolean | true:发送成功,false:发送失败。|
Z
zengyawen 已提交
7473

Y
yangguangzhao 已提交
7474
**示例:**
Y
yangguangzhao 已提交
7475

Y
Yippo 已提交
7476
  ```ts
Y
yangguangzhao 已提交
7477 7478
  class MyDeathRecipient {
      onRemoteDied() {
Y
yangguangzhao 已提交
7479
          console.log("server died");
Y
yangguangzhao 已提交
7480 7481
      }
  }
Z
zengyawen 已提交
7482 7483 7484 7485
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
Y
yangguangzhao 已提交
7486 7487 7488 7489 7490 7491 7492 7493 7494
      addDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      removeDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      isObjectDead(): boolean {
          return false;
      }
Z
zengyawen 已提交
7495 7496 7497 7498 7499 7500 7501
  }
  let testRemoteObject = new TestRemoteObject("testObject");
  let option = new rpc.MessageOption();
  let data = rpc.MessageParcel.create();
  let reply = rpc.MessageParcel.create();
  data.writeInt(1);
  data.writeString("hello");
Y
yangguangzhao 已提交
7502
  let ret: boolean = testRemoteObject.sendRequest(1, data, reply, option);
Y
yangguangzhao 已提交
7503 7504 7505 7506 7507 7508 7509 7510 7511 7512
  if (ret) {
      console.log("sendRequest got result");
      let msg = reply.readString();
      console.log("RPCTest: reply msg: " + msg);
  } else {
      console.log("RPCTest: sendRequest failed");
  }
  console.log("RPCTest: sendRequest ends, reclaim parcel");
  data.reclaim();
  reply.reclaim();
Z
zengyawen 已提交
7513 7514
  ```

7515 7516
### sendRequest<sup>8+(deprecated)</sup>

7517 7518
>从API version 9 开始不再维护,建议使用[sendMessageRequest](#sendmessagerequest9)类替代。

C
crazy_hu 已提交
7519
sendRequest(code: number, data: MessageParcel, reply: MessageParcel, options: MessageOption): Promise&lt;SendRequestResult&gt;
W
wangqinxiao 已提交
7520

7521
以同步或异步方式向对端进程发送MessageParcel消息。如果为选项设置了异步模式,则期约立即兑现,reply报文里没有内容。如果为选项设置了同步模式,则期约将在sendRequest返回时兑现,回复内容在reply报文里。
Y
yangguangzhao 已提交
7522 7523 7524

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
7525
**参数:**
W
wangqinxiao 已提交
7526

W
wanghaoxu 已提交
7527 7528 7529
  | 参数名  | 类型                            | 必填 | 说明                                                                                   |
  | ------- | ------------------------------- | ---- | -------------------------------------------------------------------------------------- |
  | code    | number                          | 是   | 本次请求调用的消息码,由通信双方确定。如果接口由IDL工具生成,则消息代码由IDL自动生成。 |
7530 7531
  | data    | [MessageParcel](#messageparceldeprecated) | 是   | 保存待发送数据的&nbsp;MessageParcel对象。                                              |
  | reply   | [MessageParcel](#messageparceldeprecated) | 是   | 接收应答数据的MessageParcel对象。                                                      |
W
wanghaoxu 已提交
7532
  | options | [MessageOption](#messageoption) | 是   | 本次请求的同异步模式,默认同步调用。                                                   |
Y
yangguangzhao 已提交
7533 7534

**返回值:**
W
wangqinxiao 已提交
7535

W
wanghaoxu 已提交
7536 7537 7538
  | 类型                             | 说明                                          |
  | -------------------------------- | --------------------------------------------- |
  | Promise&lt;SendRequestResult&gt; | 返回一个期约,兑现值是sendRequestResult实例。 |
Y
yangguangzhao 已提交
7539 7540

**示例:**
Y
yangguangzhao 已提交
7541

Y
Yippo 已提交
7542
  ```ts
Y
yangguangzhao 已提交
7543 7544
  class MyDeathRecipient {
      onRemoteDied() {
Y
yangguangzhao 已提交
7545
          console.log("server died");
Y
yangguangzhao 已提交
7546 7547
      }
  }
Z
zengyawen 已提交
7548 7549 7550 7551
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
Y
yangguangzhao 已提交
7552 7553 7554 7555 7556 7557 7558 7559 7560
      addDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      removeDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      isObjectDead(): boolean {
          return false;
      }
Z
zengyawen 已提交
7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586
  }
  let testRemoteObject = new TestRemoteObject("testObject");
  let option = new rpc.MessageOption();
  let data = rpc.MessageParcel.create();
  let reply = rpc.MessageParcel.create();
  data.writeInt(1);
  data.writeString("hello");
  testRemoteObject.sendRequest(1, data, reply, option)
      .then(function(result) {
          if (result.errCode === 0) {
              console.log("sendRequest got result");
              result.reply.readException();
              let msg = result.reply.readString();
              console.log("RPCTest: reply msg: " + msg);
          } else {
              console.log("RPCTest: sendRequest failed, errCode: " + result.errCode);
          }
      }).catch(function(e) {
          console.log("RPCTest: sendRequest got exception: " + e.message);
      }).finally (() => {
          console.log("RPCTest: sendRequest ends, reclaim parcel");
          data.reclaim();
          reply.reclaim();
      });
  ```

W
wanghaoxu 已提交
7587
### sendMessageRequest<sup>9+</sup>
7588

C
crazy_hu 已提交
7589
sendMessageRequest(code: number, data: MessageSequence, reply: MessageSequence, options: MessageOption): Promise&lt;RequestResult&gt;
7590

W
wanghaoxu 已提交
7591
以同步或异步方式向对端进程发送MessageSequence消息。如果为选项设置了异步模式,则期约立即兑现,reply报文里没有内容。如果为选项设置了同步模式,则期约将在sendMessageRequest返回时兑现,回复内容在reply报文里。
7592 7593 7594

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
7595
**参数:**
W
wangqinxiao 已提交
7596

W
wanghaoxu 已提交
7597 7598 7599
  | 参数名  | 类型                            | 必填 | 说明                                                                                   |
  | ------- | ------------------------------- | ---- | -------------------------------------------------------------------------------------- |
  | code    | number                          | 是   | 本次请求调用的消息码,由通信双方确定。如果接口由IDL工具生成,则消息代码由IDL自动生成。 |
7600 7601
  | data    | [MessageSequence](#messagesequence9) | 是   | 保存待发送数据的&nbsp;MessageSequence对象。                                            |
  | reply   | [MessageSequence](#messagesequence9) | 是   | 接收应答数据的MessageSequence对象。                                                    |
W
wanghaoxu 已提交
7602
  | options | [MessageOption](#messageoption) | 是   | 本次请求的同异步模式,默认同步调用。                                                   |
7603 7604

**返回值:**
W
wangqinxiao 已提交
7605

W
wanghaoxu 已提交
7606 7607 7608
  | 类型                         | 说明                                          |
  | ---------------------------- | --------------------------------------------- |
  | Promise&lt;RequestResult&gt; | 返回一个期约,兑现值是sendRequestResult实例。 |
7609 7610 7611

**示例:**

Y
Yippo 已提交
7612
  ```ts
7613 7614 7615 7616 7617 7618 7619
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
  }
  let testRemoteObject = new TestRemoteObject("testObject");
  let option = new rpc.MessageOption();
W
wanghaoxu 已提交
7620 7621
  let data = rpc.MessageSequence.create();
  let reply = rpc.MessageSequence.create();
7622 7623
  data.writeInt(1);
  data.writeString("hello");
W
wanghaoxu 已提交
7624
  testRemoteObject.sendMessageRequest(1, data, reply, option)
7625 7626
      .then(function(result) {
          if (result.errCode === 0) {
W
wanghaoxu 已提交
7627
              console.log("sendMessageRequest got result");
7628 7629 7630 7631
              result.reply.readException();
              let msg = result.reply.readString();
              console.log("RPCTest: reply msg: " + msg);
          } else {
W
wanghaoxu 已提交
7632
              console.log("RPCTest: sendMessageRequest failed, errCode: " + result.errCode);
7633 7634
          }
      }).catch(function(e) {
W
wanghaoxu 已提交
7635
          console.log("RPCTest: sendMessageRequest got exception: " + e.message);
7636
      }).finally (() => {
W
wanghaoxu 已提交
7637
          console.log("RPCTest: sendMessageRequest ends, reclaim parcel");
7638 7639 7640 7641
          data.reclaim();
          reply.reclaim();
      });
  ```
Z
zengyawen 已提交
7642

W
wanghaoxu 已提交
7643
### sendMessageRequest<sup>9+</sup>
Z
zengyawen 已提交
7644

W
wanghaoxu 已提交
7645 7646 7647
sendMessageRequest(code: number, data: MessageSequence, reply: MessageSequence, options: MessageOption, callback: AsyncCallback&lt;RequestResult&gt;): void

以同步或异步方式向对端进程发送MessageSequence消息。如果为选项设置了异步模式,则立即收到回调,reply报文里没有内容。如果为选项设置了同步模式,则将在sendMessageRequest返回时收到回调,回复内容在reply报文里。
Z
zengyawen 已提交
7648

Y
yangguangzhao 已提交
7649 7650
**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
7651
**参数:**
W
wanghaoxu 已提交
7652 7653 7654 7655

  | 参数名        | 类型                               | 必填 | 说明                                                                                   |
  | ------------- | ---------------------------------- | ---- | -------------------------------------------------------------------------------------- |
  | code          | number                             | 是   | 本次请求调用的消息码,由通信双方确定。如果接口由IDL工具生成,则消息代码由IDL自动生成。 |
7656 7657
  | data          | [MessageSequence](#messagesequence9) | 是   | 保存待发送数据的&nbsp;MessageSequence对象。                                            |
  | reply         | [MessageSequence](#messagesequence9) | 是   | 接收应答数据的MessageSequence对象。                                                    |
W
wanghaoxu 已提交
7658 7659 7660 7661 7662
  | options       | [MessageOption](#messageoption)    | 是   | 本次请求的同异步模式,默认同步调用。                                                   |
  | AsyncCallback | AsyncCallback&lt;RequestResult&gt; | 是   | 接收发送结果的回调。                                                                   |

**示例:**

Y
Yippo 已提交
7663
  ```ts
W
wanghaoxu 已提交
7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
  }
  function sendRequestCallback(result) {
      if (result.errCode === 0) {
          console.log("sendRequest got result");
          result.reply.readException();
          let msg = result.reply.readString();
          console.log("RPCTest: reply msg: " + msg);
      } else {
          console.log("RPCTest: sendRequest failed, errCode: " + result.errCode);
      }
      console.log("RPCTest: sendRequest ends, reclaim parcel");
      result.data.reclaim();
      result.reply.reclaim();
  }
  let testRemoteObject = new TestRemoteObject("testObject");
  let option = new rpc.MessageOption();
  let data = rpc.MessageSequence.create();
  let reply = rpc.MessageSequence.create();
  data.writeInt(1);
  data.writeString("hello");
C
crazy_hu 已提交
7688
  testRemoteObject.sendMessageRequest(1, data, reply, option, sendRequestCallback);
W
wanghaoxu 已提交
7689
  ```
W
wangqinxiao 已提交
7690

W
wanghaoxu 已提交
7691 7692
### sendRequest<sup>8+(deprecated)</sup>

7693 7694
>从API version 9 开始不再维护,建议使用[sendMessageRequest](#sendmessagerequest9)类替代。

W
wanghaoxu 已提交
7695 7696
sendRequest(code: number, data: MessageParcel, reply: MessageParcel, options: MessageOption, callback: AsyncCallback&lt;SendRequestResult&gt;): void

7697
以同步或异步方式向对端进程发送MessageParcel消息。如果为选项设置了异步模式,则立即收到回调,reply报文里没有内容。如果为选项设置了同步模式,则将在sendRequest返回时收到回调,回复内容在reply报文里。
W
wanghaoxu 已提交
7698 7699 7700

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
7701
**参数:**
W
wanghaoxu 已提交
7702 7703 7704 7705

  | 参数名        | 类型                                   | 必填 | 说明                                                                                   |
  | ------------- | -------------------------------------- | ---- | -------------------------------------------------------------------------------------- |
  | code          | number                                 | 是   | 本次请求调用的消息码,由通信双方确定。如果接口由IDL工具生成,则消息代码由IDL自动生成。 |
7706 7707
  | data          | [MessageParcel](#messageparceldeprecated)        | 是   | 保存待发送数据的&nbsp;MessageParcel对象。                                              |
  | reply         | [MessageParcel](#messageparceldeprecated)        | 是   | 接收应答数据的MessageParcel对象。                                                      |
W
wanghaoxu 已提交
7708 7709
  | options       | [MessageOption](#messageoption)        | 是   | 本次请求的同异步模式,默认同步调用。                                                   |
  | AsyncCallback | AsyncCallback&lt;SendRequestResult&gt; | 是   | 接收发送结果的回调。                                                                   |
Z
zengyawen 已提交
7710

Y
yangguangzhao 已提交
7711
**示例:**
Y
yangguangzhao 已提交
7712

Y
Yippo 已提交
7713
  ```ts
Y
yangguangzhao 已提交
7714 7715
  class MyDeathRecipient {
      onRemoteDied() {
Y
yangguangzhao 已提交
7716
          console.log("server died");
Y
yangguangzhao 已提交
7717 7718
      }
  }
Z
zengyawen 已提交
7719 7720 7721 7722
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
Y
yangguangzhao 已提交
7723 7724 7725 7726 7727 7728 7729 7730 7731
      addDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      removeDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      isObjectDead(): boolean {
          return false;
      }
Z
zengyawen 已提交
7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754
  }
  function sendRequestCallback(result) {
      if (result.errCode === 0) {
          console.log("sendRequest got result");
          result.reply.readException();
          let msg = result.reply.readString();
          console.log("RPCTest: reply msg: " + msg);
      } else {
          console.log("RPCTest: sendRequest failed, errCode: " + result.errCode);
      }
      console.log("RPCTest: sendRequest ends, reclaim parcel");
      result.data.reclaim();
      result.reply.reclaim();
  }
  let testRemoteObject = new TestRemoteObject("testObject");
  let option = new rpc.MessageOption();
  let data = rpc.MessageParcel.create();
  let reply = rpc.MessageParcel.create();
  data.writeInt(1);
  data.writeString("hello");
  testRemoteObject.sendRequest(1, data, reply, option, sendRequestCallback);
  ```

C
chenyuyan 已提交
7755
### onRemoteRequest<sup>8+(deprecated)</sup>
7756

7757
>从API version 9 开始不再维护,建议使用[onRemoteMessageRequest](#onremotemessagerequest9)类替代。
7758

C
crazy_hu 已提交
7759
onRemoteRequest(code: number, data: MessageParcel, reply: MessageParcel, options: MessageOption): boolean
W
wangqinxiao 已提交
7760

7761
sendMessageRequest请求的响应处理函数,服务端在该函数里处理请求,回复结果。
Z
zengyawen 已提交
7762

Y
yangguangzhao 已提交
7763 7764
**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
7765
**参数:**
W
wangqinxiao 已提交
7766

W
wanghaoxu 已提交
7767 7768 7769
  | 参数名 | 类型                            | 必填 | 说明                                    |
  | ------ | ------------------------------- | ---- | --------------------------------------- |
  | code   | number                          | 是   | 对端发送的服务请求码。                  |
7770 7771
  | data   | [MessageParcel](#messageparceldeprecated) | 是   | 携带客户端调用参数的MessageParcel对象。 |
  | reply  | [MessageParcel](#messageparceldeprecated) | 是   | 写入结果的MessageParcel对象。           |
W
wanghaoxu 已提交
7772
  | option | [MessageOption](#messageoption) | 是   | 指示操作是同步还是异步。                |
Z
zengyawen 已提交
7773

Y
yangguangzhao 已提交
7774
**返回值:**
W
wangqinxiao 已提交
7775

W
wanghaoxu 已提交
7776 7777
  | 类型    | 说明                                      |
  | ------- | ----------------------------------------- |
7778
  | boolean | true:操作成功,false:操作失败。|
Z
zengyawen 已提交
7779

Y
yangguangzhao 已提交
7780
**示例:**
Y
yangguangzhao 已提交
7781

Y
Yippo 已提交
7782
  ```ts
Y
yangguangzhao 已提交
7783 7784
  class MyDeathRecipient {
      onRemoteDied() {
Y
yangguangzhao 已提交
7785
          console.log("server died");
Y
yangguangzhao 已提交
7786 7787
      }
  }
Z
zengyawen 已提交
7788 7789 7790 7791
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
Y
yangguangzhao 已提交
7792 7793 7794 7795 7796 7797 7798 7799 7800
      addDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      removeDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      isObjectDead(): boolean {
          return false;
      }
Z
zengyawen 已提交
7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811
      onRemoteRequest(code, data, reply, option) {
          if (code === 1) {
              console.log("RpcServer: onRemoteRequest called");
              return true;
          } else {
              console.log("RpcServer: unknown code: " + code);
              return false;
          }
      }
  }
  ```
W
wanghaoxu 已提交
7812

7813
### onRemoteMessageRequest<sup>9+</sup>
C
chenyuyan 已提交
7814

C
crazy_hu 已提交
7815
onRemoteMessageRequest(code: number, data: MessageSequence, reply: MessageSequence, options: MessageOption): boolean | Promise\<boolean>
C
chenyuyan 已提交
7816

7817
> **说明:**
W
wanghaoxu 已提交
7818
>
7819 7820
>* 开发者应优先选择重载onRemoteMessageRequest方法,其中可以自由实现同步和异步的消息处理。
>* 开发者同时重载onRemoteRequest和onRemoteMessageRequest方法时,仅onRemoteMessageRequest方法生效。
7821

W
wanghaoxu 已提交
7822
sendMessageRequest请求的响应处理函数,服务端在该函数里同步或异步地处理请求,回复结果。
C
chenyuyan 已提交
7823 7824 7825

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
7826
**参数:**
7827

W
wanghaoxu 已提交
7828 7829 7830
  | 参数名 | 类型                            | 必填 | 说明                                      |
  | ------ | ------------------------------- | ---- | ----------------------------------------- |
  | code   | number                          | 是   | 对端发送的服务请求码。                    |
7831 7832 7833
  | data   | [MessageSequence](#messagesequence9) | 是   | 携带客户端调用参数的MessageSequence对象。 |
  | reply  | [MessageSequence](#messagesequence9) | 是   | 写入结果的MessageSequence对象。           |
  | option | [MessageOption](#messageoption) | 是   | 指示操作是同步还是异步。                  |
C
chenyuyan 已提交
7834 7835

**返回值:**
Z
zengyawen 已提交
7836

W
wanghaoxu 已提交
7837 7838
  | 类型              | 说明                                                                                           |
  | ----------------- | ---------------------------------------------------------------------------------------------- |
7839
  | boolean           | 若在onRemoteMessageRequest中同步地处理请求,则返回一个布尔值:true:操作成功,false:操作失败。 |
7840
  | Promise\<boolean> | 若在onRemoteMessageRequest中异步地处理请求,则返回一个Promise对象。                                 |
Z
zengyawen 已提交
7841

7842
**重载onRemoteMessageRequest方法同步处理请求示例:**
Z
zengyawen 已提交
7843

Y
Yippo 已提交
7844
  ```ts
C
chenyuyan 已提交
7845 7846 7847 7848
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
C
crazy_hu 已提交
7849

7850
      onRemoteMessageRequest(code, data, reply, option) {
C
chenyuyan 已提交
7851
          if (code === 1) {
7852
              console.log("RpcServer: sync onRemoteMessageRequest is called");
C
chenyuyan 已提交
7853 7854 7855 7856 7857 7858
              return true;
          } else {
              console.log("RpcServer: unknown code: " + code);
              return false;
          }
      }
7859 7860
  }
  ```
W
wanghaoxu 已提交
7861

7862
  **重载onRemoteMessageRequest方法异步处理请求示例:**
Z
zengyawen 已提交
7863

Y
Yippo 已提交
7864
  ```ts
7865 7866 7867 7868
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
C
crazy_hu 已提交
7869

7870
      async onRemoteMessageRequest(code, data, reply, option) {
C
chenyuyan 已提交
7871
          if (code === 1) {
7872
              console.log("RpcServer: async onRemoteMessageRequest is called");
C
chenyuyan 已提交
7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883
          } else {
              console.log("RpcServer: unknown code: " + code);
              return false;
          }
          await new Promise((resolve) => {
            setTimeout(resolve, 100);
          })
          return true;
      }
  }
  ```
W
wanghaoxu 已提交
7884

7885
**同时重载onRemoteMessageRequest和onRemoteRequest方法同步处理请求示例:**
7886

Y
Yippo 已提交
7887
  ```ts
7888 7889 7890 7891
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
C
crazy_hu 已提交
7892

7893 7894
      onRemoteRequest(code, data, reply, option) {
          if (code === 1) {
7895
              console.log("RpcServer: sync onRemoteMessageRequest is called");
7896 7897 7898 7899 7900 7901
              return true;
          } else {
              console.log("RpcServer: unknown code: " + code);
              return false;
          }
      }
7902 7903
      // 同时调用仅会执行onRemoteMessageRequest
      onRemoteMessageRequest(code, data, reply, option) {
7904
          if (code === 1) {
7905
              console.log("RpcServer: async onRemoteMessageRequest is called");
7906 7907 7908 7909
          } else {
              console.log("RpcServer: unknown code: " + code);
              return false;
          }
W
wanghaoxu 已提交
7910
         
7911 7912 7913 7914
          return true;
      }
  }
  ```
W
wanghaoxu 已提交
7915

7916
  **同时重载onRemoteMessageRequest和onRemoteRequest方法异步处理请求示例:**
Z
zengyawen 已提交
7917

Y
Yippo 已提交
7918
  ```ts
7919 7920 7921 7922
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
C
crazy_hu 已提交
7923

7924 7925
      onRemoteRequest(code, data, reply, option) {
          if (code === 1) {
W
wanghaoxu 已提交
7926
              console.log("RpcServer: sync onRemoteRequest is called");
7927 7928 7929 7930 7931 7932
              return true;
          } else {
              console.log("RpcServer: unknown code: " + code);
              return false;
          }
      }
7933 7934
      // 同时调用仅会执行onRemoteMessageRequest
      async onRemoteMessageRequest(code, data, reply, option) {
7935
          if (code === 1) {
7936
              console.log("RpcServer: async onRemoteMessageRequest is called");
7937 7938 7939 7940
          } else {
              console.log("RpcServer: unknown code: " + code);
              return false;
          }
W
wanghaoxu 已提交
7941
         await new Promise((resolve) => {
7942 7943 7944 7945 7946 7947
            setTimeout(resolve, 100);
          })
          return true;
      }
  }
  ```
W
wanghaoxu 已提交
7948

Z
zengyawen 已提交
7949 7950
### getCallingUid

W
wanghaoxu 已提交
7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963
getCallingUid(): number

获取通信对端的进程Uid。

**系统能力**:SystemCapability.Communication.IPC.Core

**返回值:**
  | 类型   | 说明                    |
  | ------ | ----------------------- |
  | number | 返回通信对端的进程Uid。 |

**示例:**

Y
Yippo 已提交
7964
  ```ts
W
wanghaoxu 已提交
7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
  }
  let testRemoteObject = new TestRemoteObject("testObject");
  console.log("RpcServer: getCallingUid: " + testRemoteObject.getCallingUid());
  ```

### getCallingPid

getCallingPid(): number

获取通信对端的进程Pid。

**系统能力**:SystemCapability.Communication.IPC.Core

**返回值:**

  | 类型   | 说明                    |
  | ------ | ----------------------- |
  | number | 返回通信对端的进程Pid。 |

**示例:**

Y
Yippo 已提交
7990
  ```ts
W
wanghaoxu 已提交
7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
  }
  let testRemoteObject = new TestRemoteObject("testObject");
  console.log("RpcServer: getCallingPid: " + testRemoteObject.getCallingPid());
  ```

### getLocalInterface<sup>9+</sup>

getLocalInterface(descriptor: string): IRemoteBroker
Z
zengyawen 已提交
8003

8004
查询接口描述符的字符串。
Z
zengyawen 已提交
8005

Y
yangguangzhao 已提交
8006 8007
**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
8008
**参数:**
W
wanghaoxu 已提交
8009 8010 8011 8012 8013

  | 参数名     | 类型   | 必填 | 说明                 |
  | ---------- | ------ | ---- | -------------------- |
  | descriptor | string | 是   | 接口描述符的字符串。 |

Y
yangguangzhao 已提交
8014
**返回值:**
W
wangqinxiao 已提交
8015

W
wanghaoxu 已提交
8016 8017 8018
  | 类型          | 说明                                          |
  | ------------- | --------------------------------------------- |
  | IRemoteBroker | 返回绑定到指定接口描述符的IRemoteBroker对象。 |
Z
zengyawen 已提交
8019 8020


Y
yangguangzhao 已提交
8021
**示例:**
Y
yangguangzhao 已提交
8022

Y
Yippo 已提交
8023
  ```ts
Y
yangguangzhao 已提交
8024 8025
  class MyDeathRecipient {
      onRemoteDied() {
Y
yangguangzhao 已提交
8026
          console.log("server died");
Y
yangguangzhao 已提交
8027 8028
      }
  }
Z
zengyawen 已提交
8029 8030 8031 8032
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
W
wanghaoxu 已提交
8033 8034
      registerDeathRecipient(recipient: MyDeathRecipient, flags: number);
      unregisterDeathRecipient(recipient: MyDeathRecipient, flags: number);
Y
yangguangzhao 已提交
8035 8036 8037
      isObjectDead(): boolean {
          return false;
      }
Z
zengyawen 已提交
8038 8039
  }
  let testRemoteObject = new TestRemoteObject("testObject");
W
wanghaoxu 已提交
8040 8041 8042 8043 8044 8045
  try {
      let broker = testRemoteObject.getLocalInterface("testObject");
  } catch(error) {
      console.info(rpc get local interface fail, errorCode " + error.code);
      console.info(rpc get local interface fail, errorMessage " + error.message);
  }
Z
zengyawen 已提交
8046 8047
  ```

8048
### queryLocalInterface<sup>(deprecated)</sup>
Z
zengyawen 已提交
8049

8050 8051
>从API version 9 开始不再维护,建议使用[getLocalInterface](#getlocalinterface9)类替代。

W
wanghaoxu 已提交
8052
queryLocalInterface(descriptor: string): IRemoteBroker
Z
zengyawen 已提交
8053

8054
查询并获取当前接口描述符对应的远端对象是否已经存在。
Z
zengyawen 已提交
8055

Y
yangguangzhao 已提交
8056 8057
**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
8058
**参数:**
W
wangqinxiao 已提交
8059

W
wanghaoxu 已提交
8060 8061 8062
  | 参数名     | 类型   | 必填 | 说明                   |
  | ---------- | ------ | ---- | ---------------------- |
  | descriptor | string | 是   | 需要查询的接口描述符。 |
Z
zengyawen 已提交
8063

W
wanghaoxu 已提交
8064 8065 8066 8067 8068
**返回值:**

  | 类型          | 说明                                                               |
  | ------------- | ------------------------------------------------------------------ |
  | IRemoteBroker | 如果接口描述符对应的远端对象存在,则返回该远端对象,否则返回Null。 |
Z
zengyawen 已提交
8069

Y
yangguangzhao 已提交
8070
**示例:**
Y
yangguangzhao 已提交
8071

Y
Yippo 已提交
8072
  ```ts
Y
yangguangzhao 已提交
8073 8074
  class MyDeathRecipient {
      onRemoteDied() {
Y
yangguangzhao 已提交
8075
          console.log("server died");
Y
yangguangzhao 已提交
8076 8077
      }
  }
Z
zengyawen 已提交
8078 8079 8080 8081
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
Y
yangguangzhao 已提交
8082 8083 8084 8085 8086 8087 8088 8089 8090
      addDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      removeDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      isObjectDead(): boolean {
          return false;
      }
Z
zengyawen 已提交
8091 8092
  }
  let testRemoteObject = new TestRemoteObject("testObject");
W
wanghaoxu 已提交
8093
  let broker = testRemoteObject.queryLocalInterface("testObject");
Z
zengyawen 已提交
8094 8095
  ```

W
wanghaoxu 已提交
8096
### getDescriptor<sup>9+</sup>
Z
zengyawen 已提交
8097

C
crazy_hu 已提交
8098
getDescriptor(): string
Z
zengyawen 已提交
8099

W
wanghaoxu 已提交
8100
获取对象的接口描述符。接口描述符为字符串。
Z
zengyawen 已提交
8101

Y
yangguangzhao 已提交
8102 8103
**系统能力**:SystemCapability.Communication.IPC.Core

Y
yangguangzhao 已提交
8104
**返回值:**
W
wangqinxiao 已提交
8105

W
wanghaoxu 已提交
8106 8107 8108
  | 类型   | 说明             |
  | ------ | ---------------- |
  | string | 返回接口描述符。 |
Z
zengyawen 已提交
8109

W
wanghaoxu 已提交
8110 8111
**错误码:**

C
crazy_hu 已提交
8112
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
8113

W
wanghaoxu 已提交
8114 8115 8116
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900008 | proxy or remote object is invalid |
Z
zengyawen 已提交
8117

Y
yangguangzhao 已提交
8118
**示例:**
Y
yangguangzhao 已提交
8119

Y
Yippo 已提交
8120
  ```ts
Y
yangguangzhao 已提交
8121 8122
  class MyDeathRecipient {
      onRemoteDied() {
Y
yangguangzhao 已提交
8123
          console.log("server died");
Y
yangguangzhao 已提交
8124 8125
      }
  }
Z
zengyawen 已提交
8126 8127 8128 8129
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
W
wanghaoxu 已提交
8130 8131
      addDeathRecipient(recipient: MyDeathRecipient, flags: number);
      unregisterDeathRecipient(recipient: MyDeathRecipient, flags: number);
Y
yangguangzhao 已提交
8132 8133 8134
      isObjectDead(): boolean {
          return false;
      }
Z
zengyawen 已提交
8135 8136
  }
  let testRemoteObject = new TestRemoteObject("testObject");
W
wanghaoxu 已提交
8137 8138 8139 8140 8141 8142 8143
  try {
      let descriptor = testRemoteObject.getDescriptor();
  } catch(error) {
      console.info(rpc get local interface fail, errorCode " + error.code);
      console.info(rpc get local interface fail, errorMessage " + error.message);
  }
  console.log("RpcServer: descriptor is: " + descriptor);
Z
zengyawen 已提交
8144 8145
  ```

8146
### getInterfaceDescriptor<sup>(deprecated)</sup>
Z
zengyawen 已提交
8147

8148 8149
>从API version 9 开始不再维护,建议使用[getDescriptor](#getdescriptor9)类替代。

Z
zengyawen 已提交
8150 8151
getInterfaceDescriptor(): string

8152
查询接口描述符。
Z
zengyawen 已提交
8153

Y
yangguangzhao 已提交
8154 8155
**系统能力**:SystemCapability.Communication.IPC.Core

Y
yangguangzhao 已提交
8156
**返回值:**
W
wangqinxiao 已提交
8157

W
wanghaoxu 已提交
8158 8159
  | 类型   | 说明             |
  | ------ | ---------------- |
Y
yangguangzhao 已提交
8160
  | string | 返回接口描述符。 |
Z
zengyawen 已提交
8161

Y
yangguangzhao 已提交
8162
**示例:**
Y
yangguangzhao 已提交
8163

Y
Yippo 已提交
8164
  ```ts
Y
yangguangzhao 已提交
8165 8166
  class MyDeathRecipient {
      onRemoteDied() {
Y
yangguangzhao 已提交
8167
          console.log("server died");
Y
yangguangzhao 已提交
8168 8169
      }
  }
Z
zengyawen 已提交
8170 8171 8172 8173
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
Y
yangguangzhao 已提交
8174 8175 8176 8177 8178 8179 8180 8181 8182
      addDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      removeDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      isObjectDead(): boolean {
          return false;
      }
Z
zengyawen 已提交
8183 8184 8185 8186 8187 8188
  }
  let testRemoteObject = new TestRemoteObject("testObject");
  let descriptor = testRemoteObject.getInterfaceDescriptor();
  console.log("RpcServer: descriptor is: " + descriptor);
  ```

W
wanghaoxu 已提交
8189
### modifyLocalInterface<sup>9+</sup>
Z
zengyawen 已提交
8190

W
wanghaoxu 已提交
8191
modifyLocalInterface(localInterface: IRemoteBroker, descriptor: string): void
Z
zengyawen 已提交
8192 8193 8194

此接口用于把接口描述符和IRemoteBroker对象绑定。

Y
yangguangzhao 已提交
8195 8196
**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
8197
**参数:**
W
wangqinxiao 已提交
8198

W
wanghaoxu 已提交
8199 8200 8201 8202 8203 8204 8205
  | 参数名         | 类型          | 必填 | 说明                                  |
  | -------------- | ------------- | ---- | ------------------------------------- |
  | localInterface | IRemoteBroker | 是   | 将与描述符绑定的IRemoteBroker对象。   |
  | descriptor     | string        | 是   | 用于与IRemoteBroker对象绑定的描述符。 |

**示例:**

Y
Yippo 已提交
8206
  ```ts
W
wanghaoxu 已提交
8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233
  class MyDeathRecipient {
      onRemoteDied() {
          console.log("server died");
      }
  }
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
          try {
              this.modifyLocalInterface(this, descriptor);
          } catch(error) {
              console.info(rpc attach local interface fail, errorCode " + error.code);
              console.info(rpc attach local interface fail, errorMessage " + error.message);
          }
      }
      registerDeathRecipient(recipient: MyDeathRecipient, flags: number);
      unregisterDeathRecipient(recipient: MyDeathRecipient, flags: number);
      isObjectDead(): boolean {
          return false;
      }
      asObject(): rpc.IRemoteObject {
          return this;
      }
  }
  let testRemoteObject = new TestRemoteObject("testObject");
  ```

8234
### attachLocalInterface<sup>(deprecated)</sup>
W
wanghaoxu 已提交
8235

8236 8237
>从API version 9 开始不再维护,建议使用[modifyLocalInterface](#modifylocalinterface9)类替代。

W
wanghaoxu 已提交
8238 8239
attachLocalInterface(localInterface: IRemoteBroker, descriptor: string): void

8240
此接口用于把接口描述符和IRemoteBroker对象绑定。
W
wanghaoxu 已提交
8241 8242

**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
8243

W
wanghaoxu 已提交
8244
**参数:**
W
wanghaoxu 已提交
8245 8246 8247 8248 8249

  | 参数名         | 类型          | 必填 | 说明                                  |
  | -------------- | ------------- | ---- | ------------------------------------- |
  | localInterface | IRemoteBroker | 是   | 将与描述符绑定的IRemoteBroker对象。   |
  | descriptor     | string        | 是   | 用于与IRemoteBroker对象绑定的描述符。 |
Z
zengyawen 已提交
8250

Y
yangguangzhao 已提交
8251
**示例:**
Y
yangguangzhao 已提交
8252

Y
Yippo 已提交
8253
  ```ts
Y
yangguangzhao 已提交
8254 8255
  class MyDeathRecipient {
      onRemoteDied() {
Y
yangguangzhao 已提交
8256
          console.log("server died");
Y
yangguangzhao 已提交
8257 8258
      }
  }
Z
zengyawen 已提交
8259 8260 8261 8262 8263
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
          this.attachLocalInterface(this, descriptor);
      }
Y
yangguangzhao 已提交
8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275
      addDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      removeDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      isObjectDead(): boolean {
          return false;
      }
      asObject(): rpc.IRemoteObject {
          return this;
      }
Z
zengyawen 已提交
8276 8277 8278 8279 8280 8281 8282 8283
  }
  let testRemoteObject = new TestRemoteObject("testObject");
  ```

## Ashmem<sup>8+</sup>

提供与匿名共享内存对象相关的方法,包括创建、关闭、映射和取消映射Ashmem、从Ashmem读取数据和写入数据、获取Ashmem大小、设置Ashmem保护。

Y
yangguangzhao 已提交
8284 8285
**系统能力**:以下各项对应的系统能力均为SystemCapability.Communication.IPC.Core。

8286 8287 8288
映射内存保护类型:

  | 名称       | 默认值  | 说明               |
W
wanghaoxu 已提交
8289 8290 8291 8292 8293
  | ---------- | --- | ------------------ |
  | PROT_EXEC  | 4   | 映射的内存可执行   |
  | PROT_NONE  | 0   | 映射的内存不可访问 |
  | PROT_READ  | 1   | 映射的内存可读     |
  | PROT_WRITE | 2   | 映射的内存可写     |
Z
zengyawen 已提交
8294

W
wanghaoxu 已提交
8295
### create<sup>9+</sup>
Z
zengyawen 已提交
8296

W
wanghaoxu 已提交
8297
static create(name: string, size: number): Ashmem
Z
zengyawen 已提交
8298

8299
静态方法,根据指定的名称和大小创建Ashmem对象。
Z
zengyawen 已提交
8300

Y
yangguangzhao 已提交
8301 8302
**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
8303
**参数:**
W
wangqinxiao 已提交
8304

W
wanghaoxu 已提交
8305 8306 8307 8308
  | 参数名 | 类型   | 必填 | 说明                         |
  | ------ | ------ | ---- | ---------------------------- |
  | name   | string | 是   | 名称,用于查询Ashmem信息。   |
  | size   | number | 是   | Ashmem的大小,以字节为单位。 |
Z
zengyawen 已提交
8309

Y
yangguangzhao 已提交
8310
**返回值:**
W
wangqinxiao 已提交
8311

W
wanghaoxu 已提交
8312 8313
  | 类型   | 说明                                           |
  | ------ | ---------------------------------------------- |
Y
yangguangzhao 已提交
8314
  | Ashmem | 返回创建的Ashmem对象;如果创建失败,返回null。 |
Z
zengyawen 已提交
8315

W
wanghaoxu 已提交
8316 8317
**示例:**

Y
Yippo 已提交
8318
  ```ts
C
crazy_hu 已提交
8319
  let ashmem;
W
wanghaoxu 已提交
8320
  try {
C
crazy_hu 已提交
8321
      ashmem = rpc.Ashmem.create("ashmem", 1024*1024);
W
wanghaoxu 已提交
8322 8323 8324 8325 8326 8327 8328 8329 8330 8331
  } catch(error) {
      console.info("Rpc creat ashmem fail, errorCode " + error.code);
      console.info("Rpc creat ashmem  fail, errorMessage " + error.message);
  }
  let size = ashmem.getAshmemSize();
  console.log("RpcTest: get ashemm by create : " + ashmem + " size is : " + size);
  ```

### createAshmem<sup>8+(deprecated)</sup>

8332 8333
>从API version 9 开始不再维护,建议使用[create](#create9)类替代。

W
wanghaoxu 已提交
8334 8335
static createAshmem(name: string, size: number): Ashmem

8336
静态方法,根据指定的名称和大小创建Ashmem对象。
W
wanghaoxu 已提交
8337 8338 8339

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
8340
**参数:**
W
wanghaoxu 已提交
8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351

  | 参数名 | 类型   | 必填 | 说明                         |
  | ------ | ------ | ---- | ---------------------------- |
  | name   | string | 是   | 名称,用于查询Ashmem信息。   |
  | size   | number | 是   | Ashmem的大小,以字节为单位。 |

**返回值:**

  | 类型   | 说明                                           |
  | ------ | ---------------------------------------------- |
  | Ashmem | 返回创建的Ashmem对象;如果创建失败,返回null。 |
Z
zengyawen 已提交
8352

Y
yangguangzhao 已提交
8353
**示例:**
Y
yangguangzhao 已提交
8354

Y
Yippo 已提交
8355
  ```ts
Z
zengyawen 已提交
8356 8357 8358 8359 8360
  let ashmem = rpc.Ashmem.createAshmem("ashmem", 1024*1024);
  let size = ashmem.getAshmemSize();
  console.log("RpcTest: get ashemm by createAshmem : " + ashmem + " size is : " + size);
  ```

W
wanghaoxu 已提交
8361
### create<sup>9+</sup>
Z
zengyawen 已提交
8362

W
wanghaoxu 已提交
8363
static create(ashmem: Ashmem): Ashmem
Z
zengyawen 已提交
8364

8365
静态方法,通过复制现有Ashmem对象的文件描述符(fd)来创建Ashmem对象。两个Ashmem对象指向同一个共享内存区域。
Z
zengyawen 已提交
8366

Y
yangguangzhao 已提交
8367 8368
**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
8369
**参数:**
W
wangqinxiao 已提交
8370

W
wanghaoxu 已提交
8371 8372 8373
  | 参数名 | 类型   | 必填 | 说明                 |
  | ------ | ------ | ---- | -------------------- |
  | ashmem | Ashmem | 是   | 已存在的Ashmem对象。 |
Z
zengyawen 已提交
8374

Y
yangguangzhao 已提交
8375
**返回值:**
W
wangqinxiao 已提交
8376

W
wanghaoxu 已提交
8377 8378
  | 类型   | 说明                   |
  | ------ | ---------------------- |
Y
yangguangzhao 已提交
8379
  | Ashmem | 返回创建的Ashmem对象。 |
Z
zengyawen 已提交
8380

W
wanghaoxu 已提交
8381 8382 8383

**示例:**

Y
Yippo 已提交
8384
  ```ts
C
crazy_hu 已提交
8385
  let ashmem2;
W
wanghaoxu 已提交
8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398
  try {
      let ashmem = rpc.Ashmem.create("ashmem", 1024*1024);
      let ashmem2 = rpc.Ashmem.create(ashmem);
  } catch(error) {
      console.info("Rpc creat ashmem from existing fail, errorCode " + error.code);
      console.info("Rpc creat ashmem from existing  fail, errorMessage " + error.message);
  }
  let size = ashmem2.getAshmemSize();
  console.log("RpcTest: get ashemm by create : " + ashmem2 + " size is : " + size);
  ```

### createAshmemFromExisting<sup>8+(deprecated)</sup>

8399 8400
>从API version 9 开始不再维护,建议使用[create](#create9)类替代。

W
wanghaoxu 已提交
8401 8402
static createAshmemFromExisting(ashmem: Ashmem): Ashmem

8403
静态方法,通过复制现有Ashmem对象的文件描述符(fd)来创建Ashmem对象。两个Ashmem对象指向同一个共享内存区域。
W
wanghaoxu 已提交
8404 8405 8406

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
8407
**参数:**
W
wanghaoxu 已提交
8408 8409 8410 8411 8412 8413 8414 8415 8416 8417

  | 参数名 | 类型   | 必填 | 说明                 |
  | ------ | ------ | ---- | -------------------- |
  | ashmem | Ashmem | 是   | 已存在的Ashmem对象。 |

**返回值:**

  | 类型   | 说明                   |
  | ------ | ---------------------- |
  | Ashmem | 返回创建的Ashmem对象。 |
Z
zengyawen 已提交
8418

Y
yangguangzhao 已提交
8419
**示例:**
Y
yangguangzhao 已提交
8420

Y
Yippo 已提交
8421
  ```ts
Z
zengyawen 已提交
8422 8423 8424 8425 8426 8427
  let ashmem = rpc.Ashmem.createAshmem("ashmem", 1024*1024);
  let ashmem2 = rpc.Ashmem.createAshmemFromExisting(ashmem);
  let size = ashmem2.getAshmemSize();
  console.log("RpcTest: get ashemm by createAshmemFromExisting : " + ashmem2 + " size is : " + size);
  ```

Y
yangguangzhao 已提交
8428
### closeAshmem<sup>8+</sup>
Z
zengyawen 已提交
8429 8430 8431 8432 8433

closeAshmem(): void

关闭这个Ashmem。

Y
yangguangzhao 已提交
8434
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
8435

Y
yangguangzhao 已提交
8436
**示例:**
Y
yangguangzhao 已提交
8437

Y
Yippo 已提交
8438
  ```ts
W
wanghaoxu 已提交
8439
  let ashmem = rpc.Ashmem.create("ashmem", 1024*1024);
Z
zengyawen 已提交
8440 8441 8442
  ashmem.closeAshmem();
  ```

Y
yangguangzhao 已提交
8443
### unmapAshmem<sup>8+</sup>
Z
zengyawen 已提交
8444 8445 8446 8447 8448

unmapAshmem(): void

删除该Ashmem对象的地址映射。

Y
yangguangzhao 已提交
8449
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
8450

Y
yangguangzhao 已提交
8451
**示例:**
Y
yangguangzhao 已提交
8452

Y
Yippo 已提交
8453
  ```ts
W
wanghaoxu 已提交
8454
  let ashmem = rpc.Ashmem.create("ashmem", 1024*1024);
Z
zengyawen 已提交
8455 8456 8457
  ashmem.unmapAshmem();
  ```

Y
yangguangzhao 已提交
8458
### getAshmemSize<sup>8+</sup>
Z
zengyawen 已提交
8459 8460 8461 8462 8463

getAshmemSize(): number

获取Ashmem对象的内存大小。

Y
yangguangzhao 已提交
8464
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
8465

Y
yangguangzhao 已提交
8466
**返回值:**
W
wangqinxiao 已提交
8467

W
wanghaoxu 已提交
8468 8469
  | 类型   | 说明                       |
  | ------ | -------------------------- |
Y
yangguangzhao 已提交
8470
  | number | 返回Ashmem对象的内存大小。 |
Z
zengyawen 已提交
8471

Y
yangguangzhao 已提交
8472
**示例:**
Y
yangguangzhao 已提交
8473

Y
Yippo 已提交
8474
  ```ts
Z
zengyawen 已提交
8475 8476 8477 8478 8479
  let ashmem = rpc.Ashmem.createAshmem("ashmem", 1024*1024);
  let size = ashmem.getAshmemSize();
  console.log("RpcTest: get ashmem is " + ashmem + " size is : " + size);
  ```

W
wanghaoxu 已提交
8480
### mapTypedAshmem<sup>9+</sup>
Z
zengyawen 已提交
8481

W
wanghaoxu 已提交
8482
mapTypedAshmem(mapType: number): void
Z
zengyawen 已提交
8483 8484 8485

在此进程的虚拟地址空间上创建共享文件映射,映射区域大小由此Ashmem对象指定。

Y
yangguangzhao 已提交
8486
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
8487

W
wanghaoxu 已提交
8488
**参数:**
W
wangqinxiao 已提交
8489

W
wanghaoxu 已提交
8490 8491 8492 8493
  | 参数名  | 类型   | 必填 | 说明                           |
  | ------- | ------ | ---- | ------------------------------ |
  | mapType | number | 是   | 指定映射的内存区域的保护等级。 |

W
wanghaoxu 已提交
8494 8495
**错误码:**

C
crazy_hu 已提交
8496
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
8497

W
wanghaoxu 已提交
8498 8499 8500
  | 错误码ID | 错误信息 |
  | ------- | ------ |
  | 1900001     | call mmap function failed |
W
wanghaoxu 已提交
8501 8502 8503

**示例:**

Y
Yippo 已提交
8504
  ```ts
W
wanghaoxu 已提交
8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515
  let ashmem = rpc.Ashmem.create("ashmem", 1024*1024);
  try {
      ashmem.mapTypedAshmem(ashmem.PROT_READ | ashmem.PROT_WRITE);
  } catch(error) {
      console.info("Rpc map ashmem fail, errorCode " + error.code);
      console.info("Rpc map ashmem fail, errorMessage " + error.message);
  }
  ```

### mapAshmem<sup>8+(deprecated)</sup>

8516 8517
>从API version 9 开始不再维护,建议使用[mapTypedAshmem](#maptypedashmem9)类替代。

W
wanghaoxu 已提交
8518 8519
mapAshmem(mapType: number): boolean

8520
在此进程的虚拟地址空间上创建共享文件映射,映射区域大小由此Ashmem对象指定。
W
wanghaoxu 已提交
8521 8522 8523

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
8524
**参数:**
W
wanghaoxu 已提交
8525 8526 8527 8528

  | 参数名  | 类型   | 必填 | 说明                           |
  | ------- | ------ | ---- | ------------------------------ |
  | mapType | number | 是   | 指定映射的内存区域的保护等级。 |
Z
zengyawen 已提交
8529

Y
yangguangzhao 已提交
8530
**返回值:**
W
wangqinxiao 已提交
8531

W
wanghaoxu 已提交
8532 8533
  | 类型    | 说明                                      |
  | ------- | ----------------------------------------- |
8534
  | boolean | true:映射成功,false:映射失败。|
Z
zengyawen 已提交
8535

Y
yangguangzhao 已提交
8536
**示例:**
Y
yangguangzhao 已提交
8537

Y
Yippo 已提交
8538
  ```ts
Z
zengyawen 已提交
8539
  let ashmem = rpc.Ashmem.createAshmem("ashmem", 1024*1024);
Y
yangguangzhao 已提交
8540
  let mapReadAndWrite = ashmem.mapAshmem(ashmem.PROT_READ | ashmem.PROT_WRITE);
Z
zengyawen 已提交
8541 8542 8543
  console.log("RpcTest: map ashmem result is  : " + mapReadAndWrite);
  ```

W
wanghaoxu 已提交
8544
### mapReadWriteAshmem<sup>9+</sup>
Z
zengyawen 已提交
8545

C
crazy_hu 已提交
8546
mapReadWriteAshmem(): void
Z
zengyawen 已提交
8547 8548 8549

在此进程虚拟地址空间上创建可读写的共享文件映射。

Y
yangguangzhao 已提交
8550
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
8551

W
wanghaoxu 已提交
8552 8553
**错误码:**

C
crazy_hu 已提交
8554
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
8555

W
wanghaoxu 已提交
8556 8557 8558
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900001 | call mmap function failed |
W
wanghaoxu 已提交
8559 8560 8561

**示例:**

Y
Yippo 已提交
8562
  ```ts
W
wanghaoxu 已提交
8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573
  let ashmem = rpc.Ashmem.create("ashmem", 1024*1024);
  try {
      ashmem.mapReadWriteAshmem();
  } catch(error) {
      console.info("Rpc map read and write ashmem fail, errorCode " + error.code);
      console.info("Rpc map read and write ashmem fail, errorMessage " + error.message);
  }
  ```

### mapReadAndWriteAshmem<sup>8+(deprecated)</sup>

8574 8575
>从API version 9 开始不再维护,建议使用[mapReadWriteAshmem](#mapreadwriteashmem9)类替代。

W
wanghaoxu 已提交
8576 8577
mapReadAndWriteAshmem(): boolean

8578
在此进程虚拟地址空间上创建可读写的共享文件映射。
W
wanghaoxu 已提交
8579 8580 8581

**系统能力**:SystemCapability.Communication.IPC.Core

Y
yangguangzhao 已提交
8582
**返回值:**
W
wangqinxiao 已提交
8583

W
wanghaoxu 已提交
8584 8585
  | 类型    | 说明                                      |
  | ------- | ----------------------------------------- |
8586
  | boolean | true:映射成功,false:映射失败。|
Z
zengyawen 已提交
8587

Y
yangguangzhao 已提交
8588
**示例:**
Y
yangguangzhao 已提交
8589

Y
Yippo 已提交
8590
  ```ts
Z
zengyawen 已提交
8591 8592 8593 8594 8595
  let ashmem = rpc.Ashmem.createAshmem("ashmem", 1024*1024);
  let mapResult = ashmem.mapReadAndWriteAshmem();
  console.log("RpcTest: map ashmem result is  : " + mapResult);
  ```

W
wanghaoxu 已提交
8596
### mapReadonlyAshmem<sup>9+</sup>
Z
zengyawen 已提交
8597

W
wanghaoxu 已提交
8598
mapReadonlyAshmem(): void
Z
zengyawen 已提交
8599 8600 8601

在此进程虚拟地址空间上创建只读的共享文件映射。

Y
yangguangzhao 已提交
8602
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
8603

W
wanghaoxu 已提交
8604 8605
**错误码:**

C
crazy_hu 已提交
8606
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
8607

W
wanghaoxu 已提交
8608 8609 8610
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900001 | call mmap function failed |
W
wanghaoxu 已提交
8611 8612 8613

**示例:**

Y
Yippo 已提交
8614
  ```ts
W
wanghaoxu 已提交
8615 8616 8617 8618 8619 8620 8621 8622 8623 8624 8625
  let ashmem = rpc.Ashmem.create("ashmem", 1024*1024);
  try {
      ashmem.mapReadonlyAshmem();
  } catch(error) {
      console.info("Rpc map read and write ashmem fail, errorCode " + error.code);
      console.info("Rpc map read and write ashmem fail, errorMessage " + error.message);
  }
  ```

### mapReadOnlyAshmem<sup>8+(deprecated)</sup>

8626 8627
>从API version 9 开始不再维护,建议使用[mapReadonlyAshmem](#mapreadonlyashmem9)类替代。

W
wanghaoxu 已提交
8628 8629
mapReadOnlyAshmem(): boolean

8630
在此进程虚拟地址空间上创建只读的共享文件映射。
W
wanghaoxu 已提交
8631 8632 8633

**系统能力**:SystemCapability.Communication.IPC.Core

Y
yangguangzhao 已提交
8634
**返回值:**
W
wangqinxiao 已提交
8635

W
wanghaoxu 已提交
8636 8637
  | 类型    | 说明                                      |
  | ------- | ----------------------------------------- |
8638
  | boolean | true:映射成功,false:映射失败。|
Z
zengyawen 已提交
8639

Y
yangguangzhao 已提交
8640
**示例:**
Y
yangguangzhao 已提交
8641

Y
Yippo 已提交
8642
  ```ts
Z
zengyawen 已提交
8643 8644 8645 8646 8647
  let ashmem = rpc.Ashmem.createAshmem("ashmem", 1024*1024);
  let mapResult = ashmem.mapReadOnlyAshmem();
  console.log("RpcTest: Ashmem mapReadOnlyAshmem result is : " + mapResult);
  ```

W
wanghaoxu 已提交
8648
### setProtectionType<sup>9+</sup>
Z
zengyawen 已提交
8649

W
wanghaoxu 已提交
8650
setProtectionType(protectionType: number): void
Z
zengyawen 已提交
8651 8652 8653

设置映射内存区域的保护等级。

Y
yangguangzhao 已提交
8654
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
8655

W
wanghaoxu 已提交
8656
**参数:**
W
wangqinxiao 已提交
8657

W
wanghaoxu 已提交
8658 8659 8660 8661
  | 参数名         | 类型   | 必填 | 说明               |
  | -------------- | ------ | ---- | ------------------ |
  | protectionType | number | 是   | 要设置的保护类型。 |

W
wanghaoxu 已提交
8662 8663
**错误码:**

C
crazy_hu 已提交
8664
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
8665

W
wanghaoxu 已提交
8666 8667 8668
  | 错误码ID | 错误信息 |
  | -------- | ------- |
  | 1900002 | call os ioctl function failed |
W
wanghaoxu 已提交
8669 8670 8671

**示例:**

Y
Yippo 已提交
8672
  ```ts
W
wanghaoxu 已提交
8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683
  let ashmem = rpc.Ashmem.create("ashmem", 1024*1024);
  try {
      ashmem.setProtection(ashmem.PROT_READ);
  } catch(error) {
      console.info("Rpc set protection type fail, errorCode " + error.code);
      console.info("Rpc set protection type fail, errorMessage " + error.message);
  }
  ```

### setProtection<sup>8+(deprecated)</sup>

8684 8685
>从API version 9 开始不再维护,建议使用[setProtectionType](#setprotectiontype9)类替代。

W
wanghaoxu 已提交
8686 8687
setProtection(protectionType: number): boolean

8688
设置映射内存区域的保护等级。
W
wanghaoxu 已提交
8689 8690 8691

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
8692
**参数:**
W
wanghaoxu 已提交
8693 8694 8695 8696

  | 参数名         | 类型   | 必填 | 说明               |
  | -------------- | ------ | ---- | ------------------ |
  | protectionType | number | 是   | 要设置的保护类型。 |
Z
zengyawen 已提交
8697

Y
yangguangzhao 已提交
8698
**返回值:**
W
wangqinxiao 已提交
8699

W
wanghaoxu 已提交
8700 8701
  | 类型    | 说明                                      |
  | ------- | ----------------------------------------- |
8702
  | boolean | true:设置成功,false:设置失败。|
Z
zengyawen 已提交
8703

Y
yangguangzhao 已提交
8704
**示例:**
Y
yangguangzhao 已提交
8705

Y
Yippo 已提交
8706
  ```ts
Z
zengyawen 已提交
8707
  let ashmem = rpc.Ashmem.createAshmem("ashmem", 1024*1024);
Y
yangguangzhao 已提交
8708
  let result = ashmem.setProtection(ashmem.PROT_READ);
Z
zengyawen 已提交
8709 8710 8711
  console.log("RpcTest: Ashmem setProtection result is : " + result);
  ```

W
wanghaoxu 已提交
8712
### writeAshmem<sup>9+</sup>
Z
zengyawen 已提交
8713

W
wanghaoxu 已提交
8714
writeAshmem(buf: number[], size: number, offset: number): void
Z
zengyawen 已提交
8715 8716 8717

将数据写入此Ashmem对象关联的共享文件。

Y
yangguangzhao 已提交
8718
**系统能力**:SystemCapability.Communication.IPC.Core
Z
zengyawen 已提交
8719

W
wanghaoxu 已提交
8720
**参数:**
W
wangqinxiao 已提交
8721

W
wanghaoxu 已提交
8722 8723 8724 8725 8726 8727
  | 参数名 | 类型     | 必填 | 说明                                               |
  | ------ | -------- | ---- | -------------------------------------------------- |
  | buf    | number[] | 是   | 写入Ashmem对象的数据。                             |
  | size   | number   | 是   | 要写入的数据大小。                                 |
  | offset | number   | 是   | 要写入的数据在此Ashmem对象关联的内存区间的起始位置 |

W
wanghaoxu 已提交
8728 8729
**错误码:**

C
crazy_hu 已提交
8730
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
8731

W
wanghaoxu 已提交
8732 8733 8734
  | 错误码ID | 错误信息 |
  | ------- | -------- |
  | 1900003 | write to ashmem failed |
W
wanghaoxu 已提交
8735 8736 8737

**示例:**

Y
Yippo 已提交
8738
  ```ts
W
wanghaoxu 已提交
8739 8740 8741 8742 8743 8744 8745 8746 8747 8748 8749 8750 8751
  let ashmem = rpc.Ashmem.create("ashmem", 1024*1024);
  ashmem.mapReadWriteAshmem();
  var ByteArrayVar = [1, 2, 3, 4, 5];
  try {
      ashmem.writeAshmem(ByteArrayVar, 5, 0);
  } catch(error) {
      console.info("Rpc write to ashmem fail, errorCode " + error.code);
      console.info("Rpc write to ashmem fail, errorMessage " + error.message);
  }
  ```

### writeToAshmem<sup>8+(deprecated)</sup>

8752 8753
>从API version 9 开始不再维护,建议使用[writeAshmem](#writeashmem9)类替代。

W
wanghaoxu 已提交
8754 8755
writeToAshmem(buf: number[], size: number, offset: number): boolean

8756
将数据写入此Ashmem对象关联的共享文件。
W
wanghaoxu 已提交
8757 8758 8759

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
8760
**参数:**
W
wanghaoxu 已提交
8761 8762 8763 8764 8765 8766

  | 参数名 | 类型     | 必填 | 说明                                               |
  | ------ | -------- | ---- | -------------------------------------------------- |
  | buf    | number[] | 是   | 写入Ashmem对象的数据。                             |
  | size   | number   | 是   | 要写入的数据大小。                                 |
  | offset | number   | 是   | 要写入的数据在此Ashmem对象关联的内存区间的起始位置 |
Z
zengyawen 已提交
8767

Y
yangguangzhao 已提交
8768
**返回值:**
W
wangqinxiao 已提交
8769

W
wanghaoxu 已提交
8770 8771
  | 类型    | 说明                                                                                      |
  | ------- | ----------------------------------------------------------------------------------------- |
8772
  | boolean | true:如果数据写入成功,false:在其他情况下,如数据写入越界或未获得写入权限。。 |
Z
zengyawen 已提交
8773

Y
yangguangzhao 已提交
8774
**示例:**
Y
yangguangzhao 已提交
8775

Y
Yippo 已提交
8776
  ```ts
Z
zengyawen 已提交
8777
  let ashmem = rpc.Ashmem.createAshmem("ashmem", 1024*1024);
Y
yangguangzhao 已提交
8778 8779
  let mapResult = ashmem.mapReadAndWriteAshmem();
  console.info("RpcTest map ashmem result is " + mapResult);
Y
yangguangzhao 已提交
8780
  var ByteArrayVar = [1, 2, 3, 4, 5];
Z
zengyawen 已提交
8781 8782 8783 8784
  let writeResult = ashmem.writeToAshmem(ByteArrayVar, 5, 0);
  console.log("RpcTest: write to Ashmem result is  : " + writeResult);
  ```

W
wanghaoxu 已提交
8785
### readAshmem<sup>9+</sup>
Z
zengyawen 已提交
8786

W
wanghaoxu 已提交
8787
readAshmem(size: number, offset: number): number[]
Z
zengyawen 已提交
8788 8789 8790

从此Ashmem对象关联的共享文件中读取数据。

Y
yangguangzhao 已提交
8791 8792
**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
8793
**参数:**
W
wangqinxiao 已提交
8794

W
wanghaoxu 已提交
8795 8796 8797 8798
  | 参数名 | 类型   | 必填 | 说明                                               |
  | ------ | ------ | ---- | -------------------------------------------------- |
  | size   | number | 是   | 要读取的数据的大小。                               |
  | offset | number | 是   | 要读取的数据在此Ashmem对象关联的内存区间的起始位置 |
Z
zengyawen 已提交
8799

Y
yangguangzhao 已提交
8800
**返回值:**
W
wangqinxiao 已提交
8801

W
wanghaoxu 已提交
8802 8803
  | 类型     | 说明             |
  | -------- | ---------------- |
Y
yangguangzhao 已提交
8804
  | number[] | 返回读取的数据。 |
Z
zengyawen 已提交
8805

W
wanghaoxu 已提交
8806 8807
**错误码:**

C
crazy_hu 已提交
8808
以下错误码的详细介绍请参见[ohos.rpc错误码](../errorcodes/errorcode-rpc.md)
W
wanghaoxu 已提交
8809

W
wanghaoxu 已提交
8810 8811 8812
  | 错误码ID  | 错误信息 |
  | -------- | -------- |
  | 1900004 | read from ashmem failed |
Z
zengyawen 已提交
8813

Y
yangguangzhao 已提交
8814
**示例:**
Y
yangguangzhao 已提交
8815

Y
Yippo 已提交
8816
  ```ts
W
wanghaoxu 已提交
8817 8818 8819 8820 8821 8822 8823 8824 8825 8826 8827 8828 8829 8830 8831
  let ashmem = rpc.Ashmem.create("ashmem", 1024*1024);
  ashmem.mapReadWriteAshmem();
  var ByteArrayVar = [1, 2, 3, 4, 5];
  ashmem.writeAshmem(ByteArrayVar, 5, 0);
  try {
      let readResult = ashmem.readAshmem(5, 0);
      console.log("RpcTest: read from Ashmem result is  : " + readResult);
  } catch(error) {
      console.info("Rpc read from ashmem fail, errorCode " + error.code);
      console.info("Rpc read from ashmem fail, errorMessage " + error.message);
  }
  ```

### readFromAshmem<sup>8+(deprecated)</sup>

8832 8833
>从API version 9 开始不再维护,建议使用[readAshmem](#readashmem9)类替代。

W
wanghaoxu 已提交
8834 8835
readFromAshmem(size: number, offset: number): number[]

8836
从此Ashmem对象关联的共享文件中读取数据。
W
wanghaoxu 已提交
8837 8838 8839

**系统能力**:SystemCapability.Communication.IPC.Core

W
wanghaoxu 已提交
8840
**参数:**
W
wanghaoxu 已提交
8841 8842 8843 8844 8845 8846 8847 8848 8849 8850 8851 8852 8853 8854

  | 参数名 | 类型   | 必填 | 说明                                               |
  | ------ | ------ | ---- | -------------------------------------------------- |
  | size   | number | 是   | 要读取的数据的大小。                               |
  | offset | number | 是   | 要读取的数据在此Ashmem对象关联的内存区间的起始位置 |

**返回值:**

  | 类型     | 说明             |
  | -------- | ---------------- |
  | number[] | 返回读取的数据。 |

**示例:**

Y
Yippo 已提交
8855
 ```ts
Z
zengyawen 已提交
8856
  let ashmem = rpc.Ashmem.createAshmem("ashmem", 1024*1024);
Y
yangguangzhao 已提交
8857 8858
  let mapResult = ashmem.mapReadAndWriteAshmem();
  console.info("RpcTest map ashmem result is " + mapResult);
Y
yangguangzhao 已提交
8859
  var ByteArrayVar = [1, 2, 3, 4, 5];
Z
zengyawen 已提交
8860 8861 8862 8863
  let writeResult = ashmem.writeToAshmem(ByteArrayVar, 5, 0);
  console.log("RpcTest: write to Ashmem result is  : " + writeResult);
  let readResult = ashmem.readFromAshmem(5, 0);
  console.log("RpcTest: read to Ashmem result is  : " + readResult);
8864
 ```