js-apis-rpc.md 125.9 KB
Newer Older
Z
zengyawen 已提交
1 2
# RPC通信

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

> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
> 本模块首批接口从API version 7开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。


## 导入模块

Y
yangguangzhao 已提交
11

Z
zengyawen 已提交
12 13 14 15 16 17 18
```
import rpc from '@ohos.rpc';
```


## MessageParcel

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


### create

create(): MessageParcel

静态方法,创建MessageParcel对象。

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

Y
yangguangzhao 已提交
30
**返回值:**
W
wangqinxiao 已提交
31 32

  | 类型 | 说明 |
Z
zengyawen 已提交
33
  | -------- | -------- |
Y
yangguangzhao 已提交
34
  | MessageParcel | 返回创建的MessageParcel对象。 |
Z
zengyawen 已提交
35

Y
yangguangzhao 已提交
36
**示例:**
Y
yangguangzhao 已提交
37

Z
zengyawen 已提交
38 39 40 41 42 43 44 45 46 47 48 49
  ```
  let data = rpc.MessageParcel.create();
  console.log("RpcClient: data is " + data);
  ```


### reclaim

reclaim(): void

释放不再使用的MessageParcel对象。

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

Y
yangguangzhao 已提交
52
**示例:**
Y
yangguangzhao 已提交
53

Z
zengyawen 已提交
54 55 56 57 58 59 60 61 62 63 64
  ```
  let reply = rpc.MessageParcel.create();
  reply.reclaim();
  ```


### writeRemoteObject

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

  序列化远程对象并将其写入MessageParcel对象。
Y
yangguangzhao 已提交
65 66 67

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

Y
yangguangzhao 已提交
68
**参数:**
W
wangqinxiao 已提交
69 70

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
71
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
72
  | object | [IRemoteObject](#iremoteobject) | 是 | 要序列化并写入MessageParcel的远程对象。 |
Z
zengyawen 已提交
73

Y
yangguangzhao 已提交
74
**返回值:**
W
wangqinxiao 已提交
75 76

  | 类型 | 说明 |
Z
zengyawen 已提交
77
  | -------- | -------- |
Y
yangguangzhao 已提交
78
  | boolean | 如果操作成功,则返回true;否则返回false。 |
Z
zengyawen 已提交
79

Y
yangguangzhao 已提交
80
**示例:**
Y
yangguangzhao 已提交
81

Z
zengyawen 已提交
82
  ```
Y
yangguangzhao 已提交
83 84
  class MyDeathRecipient {
      onRemoteDied() {
Y
yangguangzhao 已提交
85
          console.log("server died");
Y
yangguangzhao 已提交
86 87
      }
  }
Z
zengyawen 已提交
88 89 90 91
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
Y
yangguangzhao 已提交
92 93 94 95 96 97 98 99 100
      addDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      removeDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      isObjectDead(): boolean {
          return false;
      }
Z
zengyawen 已提交
101 102 103 104 105 106 107 108 109 110 111 112 113
  }
  let data = rpc.MessageParcel.create();
  let testRemoteObject = new TestRemoteObject("testObject");
  data.writeRemoteObject(testRemoteObject);
  ```


### readRemoteObject

readRemoteObject(): IRemoteObject

从MessageParcel读取远程对象。此方法用于反序列化MessageParcel对象以生成IRemoteObject。远程对象按写入MessageParcel的顺序读取。

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

Y
yangguangzhao 已提交
116
**返回值:**
W
wangqinxiao 已提交
117 118

  | 类型 | 说明 |
Z
zengyawen 已提交
119
  | -------- | -------- |
Y
yangguangzhao 已提交
120
  | [IRemoteObject](#iremoteobject) | 读取到的远程对象。 |
Z
zengyawen 已提交
121

Y
yangguangzhao 已提交
122
**示例:**
Y
yangguangzhao 已提交
123

Z
zengyawen 已提交
124
  ```
Y
yangguangzhao 已提交
125 126
  class MyDeathRecipient {
      onRemoteDied() {
Y
yangguangzhao 已提交
127
          console.log("server died");
Y
yangguangzhao 已提交
128 129
      }
  }
Z
zengyawen 已提交
130 131 132 133
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
Y
yangguangzhao 已提交
134 135 136 137 138 139 140 141 142
      addDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      removeDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      isObjectDead(): boolean {
          return false;
      }
Z
zengyawen 已提交
143 144 145 146 147 148 149 150 151 152 153 154
  }
  let data = rpc.MessageParcel.create();
  let testRemoteObject = new TestRemoteObject("testObject");
  data.writeRemoteObject(testRemoteObject);
  let proxy = data.readRemoteObject();
  ```


### writeInterfaceToken

writeInterfaceToken(token: string): boolean

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

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

Y
yangguangzhao 已提交
159
**参数:**
W
wangqinxiao 已提交
160 161

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
162
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
163
  | token | string | 是 | 字符串类型描述符。 |
Z
zengyawen 已提交
164

Y
yangguangzhao 已提交
165
**返回值:**
W
wangqinxiao 已提交
166 167

  | 类型 | 说明 |
Z
zengyawen 已提交
168
  | -------- | -------- |
Y
yangguangzhao 已提交
169
  | boolean | 如果操作成功,则返回true;否则返回false。 |
Z
zengyawen 已提交
170

Y
yangguangzhao 已提交
171
**示例:**
Y
yangguangzhao 已提交
172

Z
zengyawen 已提交
173 174 175 176 177 178 179 180 181 182 183
  ```
  let data = rpc.MessageParcel.create();
  let result = data.writeInterfaceToken("aaa");
  console.log("RpcServer: writeInterfaceToken is " + result);
  ```


### readInterfaceToken

readInterfaceToken(): string

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

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

Y
yangguangzhao 已提交
188
**返回值:**
W
wangqinxiao 已提交
189 190

  | 类型 | 说明 |
Z
zengyawen 已提交
191
  | -------- | -------- |
Y
yangguangzhao 已提交
192
  | string | 返回读取到的接口描述符。 |
Z
zengyawen 已提交
193

Y
yangguangzhao 已提交
194
**示例:**
Y
yangguangzhao 已提交
195

Z
zengyawen 已提交
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
  ```
  class Stub extends rpc.RemoteObject {
      onRemoteRequest(code, data, reply, option) {
          let interfaceToken = data.readInterfaceToken();
          console.log("RpcServer: interfaceToken is " + interfaceToken);
          return true;
      }
  }
  ```


### getSize

getSize(): number

获取当前MessageParcel的数据大小。

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

Y
yangguangzhao 已提交
215
**返回值:**
W
wangqinxiao 已提交
216 217

  | 类型 | 说明 |
Z
zengyawen 已提交
218
  | -------- | -------- |
Y
yangguangzhao 已提交
219
  | number | 获取的MessageParcel的数据大小。以字节为单位。 |
Z
zengyawen 已提交
220

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

Z
zengyawen 已提交
223 224 225 226 227 228 229 230 231 232 233 234 235
  ```
  let data = rpc.MessageParcel.create();
  let size = data.getSize();
  console.log("RpcClient: size is " + size);
  ```


### getCapacity

getCapacity(): number

获取当前MessageParcel的容量。

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

Y
yangguangzhao 已提交
238
**返回值:**
W
wangqinxiao 已提交
239 240

  | 类型 | 说明 |
Z
zengyawen 已提交
241
  | -------- | -------- |
Y
yangguangzhao 已提交
242
  | number | 获取的MessageParcel的容量大小。以字节为单位。 |
Z
zengyawen 已提交
243

Y
yangguangzhao 已提交
244
**示例:**
Y
yangguangzhao 已提交
245

Z
zengyawen 已提交
246 247 248 249 250 251 252 253 254 255 256 257 258
  ```
  let data = rpc.MessageParcel.create();
  let result = data.getCapacity();
  console.log("RpcClient: capacity is " + result);
  ```


### setSize

setSize(size: number): boolean

设置MessageParcel实例中包含的数据大小。

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

Y
yangguangzhao 已提交
261
**参数:**
W
wangqinxiao 已提交
262 263

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
264
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
265
  | size | number | 是 | MessageParcel实例的数据大小。以字节为单位。 |
Z
zengyawen 已提交
266

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

  | 类型 | 说明 |
Z
zengyawen 已提交
270
  | -------- | -------- |
Y
yangguangzhao 已提交
271
  | boolean | 设置成功返回true,否则返回false。 |
Z
zengyawen 已提交
272

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

Z
zengyawen 已提交
275 276 277 278 279 280 281 282 283 284 285 286 287
  ```
  let data = rpc.MessageParcel.create();
  let setSize = data.setSize(16);
  console.log("RpcClient: setSize is " + setSize);
  ```


### setCapacity

setCapacity(size: number): boolean

设置MessageParcel实例的存储容量。

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

Y
yangguangzhao 已提交
290
**参数:**
W
wangqinxiao 已提交
291 292

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
293
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
294
  | size | number | 是 | MessageParcel实例的存储容量。以字节为单位。 |
Z
zengyawen 已提交
295

Y
yangguangzhao 已提交
296
**返回值:**
W
wangqinxiao 已提交
297 298

  | 类型 | 说明 |
Z
zengyawen 已提交
299
  | -------- | -------- |
Y
yangguangzhao 已提交
300
  | boolean | 设置成功返回true,否则返回false。 |
Z
zengyawen 已提交
301

Y
yangguangzhao 已提交
302
**示例:**
Y
yangguangzhao 已提交
303

Z
zengyawen 已提交
304 305 306 307 308 309 310 311 312 313 314 315 316
  ```
  let data = rpc.MessageParcel.create();
  let result = data.setCapacity(100);
  console.log("RpcClient: setCapacity is " + result);
  ```


### getWritableBytes

getWritableBytes(): number

获取MessageParcel的可写字节空间。

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

Y
yangguangzhao 已提交
319
**返回值:**
W
wangqinxiao 已提交
320 321

  | 类型 | 说明 |
Z
zengyawen 已提交
322
  | -------- | -------- |
Y
yangguangzhao 已提交
323
  | number | 获取到的MessageParcel的可写字节空间。以字节为单位。 |
Z
zengyawen 已提交
324

Y
yangguangzhao 已提交
325
**示例:**
Y
yangguangzhao 已提交
326

Z
zengyawen 已提交
327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343
  ```
  class Stub extends rpc.RemoteObject {
      onRemoteRequest(code, data, reply, option) {
          let getWritableBytes = data.getWritableBytes();
          console.log("RpcServer: getWritableBytes is " + getWritableBytes);
          return true;
      }
  }
  ```


### getReadableBytes

getReadableBytes(): number

获取MessageParcel的可读字节空间。

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

Y
yangguangzhao 已提交
346
**返回值:**
W
wangqinxiao 已提交
347 348

  | 类型 | 说明 |
Z
zengyawen 已提交
349
  | -------- | -------- |
Y
yangguangzhao 已提交
350
  | number | 获取到的MessageParcel的可读字节空间。以字节为单位。 |
Z
zengyawen 已提交
351

Y
yangguangzhao 已提交
352
**示例:**
Y
yangguangzhao 已提交
353

Z
zengyawen 已提交
354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
  ```
  class Stub extends rpc.RemoteObject {
      onRemoteRequest(code, data, reply, option) {
          let result = data.getReadableBytes();
          console.log("RpcServer: getReadableBytes is " + result);
          return true;
      }
  }
  ```


### getReadPosition

getReadPosition(): number

获取MessageParcel的读位置。

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

Y
yangguangzhao 已提交
373
**返回值:**
W
wangqinxiao 已提交
374 375

  | 类型 | 说明 |
Z
zengyawen 已提交
376
  | -------- | -------- |
Y
yangguangzhao 已提交
377
  | number | 返回MessageParcel实例中的当前读取位置。 |
Z
zengyawen 已提交
378

Y
yangguangzhao 已提交
379
**示例:**
Y
yangguangzhao 已提交
380

Z
zengyawen 已提交
381 382 383 384 385 386 387 388 389 390 391 392 393
  ```
  let data = rpc.MessageParcel.create();
  let readPos = data.getReadPosition();
  console.log("RpcClient: readPos is " + readPos);
  ```


### getWritePosition

getWritePosition(): number

获取MessageParcel的写位置。

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

Y
yangguangzhao 已提交
396
**返回值:**
W
wangqinxiao 已提交
397 398

  | 类型 | 说明 |
Z
zengyawen 已提交
399
  | -------- | -------- |
Y
yangguangzhao 已提交
400
  | number | 返回MessageParcel实例中的当前写入位置。 |
Z
zengyawen 已提交
401

Y
yangguangzhao 已提交
402
**示例:**
Y
yangguangzhao 已提交
403

Z
zengyawen 已提交
404 405 406 407 408 409 410 411 412 413 414 415 416 417
  ```
  let data = rpc.MessageParcel.create();
  data.writeInt(10);
  let bwPos = data.getWritePosition();
  console.log("RpcClient: bwPos is " + bwPos);
  ```


### rewindRead

rewindRead(pos: number): boolean

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

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

Y
yangguangzhao 已提交
420
**参数:**
W
wangqinxiao 已提交
421 422

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
423
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
424
  | pos | number | 是 | 开始读取数据的目标位置。 |
Z
zengyawen 已提交
425

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

  | 类型 | 说明 |
Z
zengyawen 已提交
429
  | -------- | -------- |
Y
yangguangzhao 已提交
430
  | boolean | 如果读取位置发生更改,则返回true;否则返回false。 |
Z
zengyawen 已提交
431

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

Z
zengyawen 已提交
434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451
  ```
  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

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

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

Y
yangguangzhao 已提交
454
**参数:**
W
wangqinxiao 已提交
455 456

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
457
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
458
  | pos | number | 是 | 开始写入数据的目标位置。 |
Z
zengyawen 已提交
459

Y
yangguangzhao 已提交
460
**返回值:**
W
wangqinxiao 已提交
461 462

  | 类型 | 说明 |
Z
zengyawen 已提交
463
  | -------- | -------- |
Y
yangguangzhao 已提交
464
  | boolean | 如果写入位置更改,则返回true;否则返回false。 |
Z
zengyawen 已提交
465

Y
yangguangzhao 已提交
466
**示例:**
Y
yangguangzhao 已提交
467

Z
zengyawen 已提交
468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483
  ```
  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实例。

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

Y
yangguangzhao 已提交
486
**参数:**
W
wangqinxiao 已提交
487 488

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
489
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
490
  | val | number | 是 | 要写入的字节值。 |
Z
zengyawen 已提交
491

Y
yangguangzhao 已提交
492
**返回值:**
W
wangqinxiao 已提交
493 494

  | 类型 | 说明 |
Z
zengyawen 已提交
495
  | -------- | -------- |
Y
yangguangzhao 已提交
496
  | boolean | 写入返回成功,否则返回false。 |
Z
zengyawen 已提交
497

Y
yangguangzhao 已提交
498
**示例:**
Y
yangguangzhao 已提交
499

Z
zengyawen 已提交
500 501 502 503 504 505 506 507 508 509 510 511 512
  ```
  let data = rpc.MessageParcel.create();
  let result = data.writeByte(2);
  console.log("RpcClient: writeByte is: " + result);
  ```


### readByte

readByte(): number

从MessageParcel实例读取字节值。

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

Y
yangguangzhao 已提交
515
**返回值:**
W
wangqinxiao 已提交
516 517

  | 类型 | 说明 |
Z
zengyawen 已提交
518
  | -------- | -------- |
Y
yangguangzhao 已提交
519
  | number | 返回字节值。 |
Z
zengyawen 已提交
520

Y
yangguangzhao 已提交
521
**示例:**
Y
yangguangzhao 已提交
522

Z
zengyawen 已提交
523 524 525 526 527 528 529 530 531 532 533 534 535 536 537
  ```
  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实例。

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

Y
yangguangzhao 已提交
540
**参数:**
W
wangqinxiao 已提交
541 542

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
543
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
544
  | val | number | 是 | 要写入的短整数值。 |
Z
zengyawen 已提交
545

Y
yangguangzhao 已提交
546
**返回值:**
W
wangqinxiao 已提交
547 548

  | 类型 | 说明 |
Z
zengyawen 已提交
549
  | -------- | -------- |
Y
yangguangzhao 已提交
550
  | boolean | 写入返回true,否则返回false。 |
Z
zengyawen 已提交
551

Y
yangguangzhao 已提交
552
**示例:**
Y
yangguangzhao 已提交
553

Z
zengyawen 已提交
554 555 556 557 558 559 560 561 562 563 564 565 566
  ```
  let data = rpc.MessageParcel.create();
  let result = data.writeShort(8);
  console.log("RpcClient: writeShort is: " + result);
  ```


### readShort

readShort(): number

从MessageParcel实例读取短整数值。

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

Y
yangguangzhao 已提交
569
**返回值:**
W
wangqinxiao 已提交
570 571

  | 类型 | 说明 |
Z
zengyawen 已提交
572
  | -------- | -------- |
Y
yangguangzhao 已提交
573
  | number | 返回短整数值。 |
Z
zengyawen 已提交
574

Y
yangguangzhao 已提交
575
**示例:**
Y
yangguangzhao 已提交
576

Z
zengyawen 已提交
577 578 579 580 581 582 583 584 585 586 587 588 589 590 591
  ```
  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实例。

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

Y
yangguangzhao 已提交
594
**参数:**
W
wangqinxiao 已提交
595 596

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
597
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
598
  | val | number | 是 | 要写入的整数值。 |
Z
zengyawen 已提交
599

Y
yangguangzhao 已提交
600
**返回值:**
W
wangqinxiao 已提交
601 602

  | 类型 | 说明 |
Z
zengyawen 已提交
603
  | -------- | -------- |
Y
yangguangzhao 已提交
604
  | boolean | 写入返回成功,否则返回false。 |
Z
zengyawen 已提交
605

Y
yangguangzhao 已提交
606
**示例:**
Y
yangguangzhao 已提交
607

Z
zengyawen 已提交
608 609 610 611 612 613 614 615 616 617 618 619 620
  ```
  let data = rpc.MessageParcel.create();
  let result = data.writeInt(10);
  console.log("RpcClient: writeInt is " + result);
  ```


### readInt

readInt(): number

从MessageParcel实例读取整数值。

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

Y
yangguangzhao 已提交
623
**返回值:**
W
wangqinxiao 已提交
624 625

  | 类型 | 说明 |
Z
zengyawen 已提交
626
  | -------- | -------- |
Y
yangguangzhao 已提交
627
  | number | 返回整数值。 |
Z
zengyawen 已提交
628

Y
yangguangzhao 已提交
629
**示例:**
Y
yangguangzhao 已提交
630

Z
zengyawen 已提交
631 632 633 634 635 636 637 638 639 640 641 642 643 644 645
  ```
  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实例。

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

Y
yangguangzhao 已提交
648
**参数:**
W
wangqinxiao 已提交
649 650

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
651
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
652
  | val | number | 是 | 要写入的长整数值 |
Z
zengyawen 已提交
653

Y
yangguangzhao 已提交
654
**返回值:**
W
wangqinxiao 已提交
655 656

  | 类型 | 说明 |
Z
zengyawen 已提交
657
  | -------- | -------- |
Y
yangguangzhao 已提交
658
  | boolean | 写入成功返回true,否则返回false。 |
Z
zengyawen 已提交
659

Y
yangguangzhao 已提交
660
**示例:**
Y
yangguangzhao 已提交
661

Z
zengyawen 已提交
662 663 664 665 666 667 668 669 670 671 672 673 674
  ```
  let data = rpc.MessageParcel.create();
  let result = data.writeLong(10000);
  console.log("RpcClient: writeLong is " + result);
  ```


### readLong

readLong(): number

从MessageParcel实例中读取长整数值。

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

Y
yangguangzhao 已提交
677
**返回值:**
W
wangqinxiao 已提交
678 679

  | 类型 | 说明 |
Z
zengyawen 已提交
680
  | -------- | -------- |
Y
yangguangzhao 已提交
681
  | number | 返回长整数值。 |
Z
zengyawen 已提交
682

Y
yangguangzhao 已提交
683
**示例:**
Y
yangguangzhao 已提交
684

Z
zengyawen 已提交
685 686 687 688
  ```
  let data = rpc.MessageParcel.create();
  let result = data.writeLong(10000);
  console.log("RpcClient: writeLong is " + result);
Y
yangguangzhao 已提交
689
  let ret = data.readLong();
Z
zengyawen 已提交
690 691 692 693 694 695 696 697 698 699
  console.log("RpcClient: readLong is " + ret);
  ```


### writeFloat

writeFloat(val: number): boolean

将浮点值写入MessageParcel实例。

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

Y
yangguangzhao 已提交
702
**参数:**
W
wangqinxiao 已提交
703 704

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
705
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
706
  | val | number | 是 | 要写入的浮点值。 |
Z
zengyawen 已提交
707

Y
yangguangzhao 已提交
708
**返回值:**
W
wangqinxiao 已提交
709 710

  | 类型 | 说明 |
Z
zengyawen 已提交
711
  | -------- | -------- |
Y
yangguangzhao 已提交
712
  | boolean | 写入成功返回true,否则返回false。 |
Z
zengyawen 已提交
713

Y
yangguangzhao 已提交
714
**示例:**
Y
yangguangzhao 已提交
715

Z
zengyawen 已提交
716 717 718 719 720 721 722 723 724 725 726 727 728
  ```
  let data = rpc.MessageParcel.create();
  let result = data.writeFloat(1.2);
  console.log("RpcClient: writeFloat is " + result);
  ```


### readFloat

readFloat(): number

从MessageParcel实例中读取浮点值。

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

Y
yangguangzhao 已提交
731
**返回值:**
W
wangqinxiao 已提交
732 733

  | 类型 | 说明 |
Z
zengyawen 已提交
734
  | -------- | -------- |
Y
yangguangzhao 已提交
735
  | number | 返回浮点值。 |
Z
zengyawen 已提交
736

Y
yangguangzhao 已提交
737
**示例:**
Y
yangguangzhao 已提交
738

Z
zengyawen 已提交
739 740 741 742 743 744 745 746 747 748 749 750 751 752 753
  ```
  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实例。

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

Y
yangguangzhao 已提交
756
**参数:**
W
wangqinxiao 已提交
757 758

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
759
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
760
  | val | number | 是 | 要写入的双精度浮点值。 |
Z
zengyawen 已提交
761

Y
yangguangzhao 已提交
762
**返回值:**
W
wangqinxiao 已提交
763 764

  | 类型 | 说明 |
Z
zengyawen 已提交
765
  | -------- | -------- |
Y
yangguangzhao 已提交
766
  | boolean | 写入成功返回true,否则返回false。 |
Z
zengyawen 已提交
767

Y
yangguangzhao 已提交
768
**示例:**
Y
yangguangzhao 已提交
769

Z
zengyawen 已提交
770 771 772 773 774 775 776 777 778 779 780 781 782
  ```
  let data = rpc.MessageParcel.create();
  let result = data.writeDouble(10.2);
  console.log("RpcClient: writeDouble is " + result);
  ```


### readDouble

readDouble(): number

从MessageParcel实例读取双精度浮点值。

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

Y
yangguangzhao 已提交
785
**返回值:**
W
wangqinxiao 已提交
786 787

  | 类型 | 说明 |
Z
zengyawen 已提交
788
  | -------- | -------- |
Y
yangguangzhao 已提交
789
  | number | 返回双精度浮点值。 |
Z
zengyawen 已提交
790

Y
yangguangzhao 已提交
791
**示例:**
Y
yangguangzhao 已提交
792

Z
zengyawen 已提交
793 794 795 796 797 798 799 800 801 802 803 804 805 806 807
  ```
  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实例。

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

Y
yangguangzhao 已提交
810
**参数:**
W
wangqinxiao 已提交
811 812

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
813
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
814
  | val | boolean | 是 | 要写入的布尔值。 |
Z
zengyawen 已提交
815

Y
yangguangzhao 已提交
816
**返回值:**
W
wangqinxiao 已提交
817 818

  | 类型 | 说明 |
Z
zengyawen 已提交
819
  | -------- | -------- |
Y
yangguangzhao 已提交
820
  | boolean | 写入成功返回true,否则返回false。 |
Z
zengyawen 已提交
821

Y
yangguangzhao 已提交
822
**示例:**
Y
yangguangzhao 已提交
823

Z
zengyawen 已提交
824 825 826 827 828 829 830 831 832 833 834 835 836
  ```
  let data = rpc.MessageParcel.create();
  let result = data.writeBoolean(false);
  console.log("RpcClient: writeBoolean is " + result);
  ```


### readBoolean

readBoolean(): boolean

从MessageParcel实例读取布尔值。

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

Y
yangguangzhao 已提交
839
**返回值:**
W
wangqinxiao 已提交
840 841

  | 类型 | 说明 |
Z
zengyawen 已提交
842
  | -------- | -------- |
Y
yangguangzhao 已提交
843
  | boolean | 返回读取到的布尔值。 |
Z
zengyawen 已提交
844

Y
yangguangzhao 已提交
845
**示例:**
Y
yangguangzhao 已提交
846

Z
zengyawen 已提交
847 848 849 850 851 852 853 854 855 856 857 858 859 860 861
  ```
  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实例。

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

Y
yangguangzhao 已提交
864
**参数:**
W
wangqinxiao 已提交
865 866

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
867
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
868
  | val | number | 是 | 要写入的单个字符值。 |
Z
zengyawen 已提交
869

Y
yangguangzhao 已提交
870
**返回值:**
W
wangqinxiao 已提交
871 872

  | 类型 | 说明 |
Z
zengyawen 已提交
873
  | -------- | -------- |
Y
yangguangzhao 已提交
874
  | boolean | 写入返回true,否则返回false。 |
Z
zengyawen 已提交
875

Y
yangguangzhao 已提交
876
**示例:**
Y
yangguangzhao 已提交
877

Z
zengyawen 已提交
878 879
  ```
  let data = rpc.MessageParcel.create();
Y
yangguangzhao 已提交
880
  let result = data.writeChar(97);
Z
zengyawen 已提交
881 882 883 884 885 886 887 888 889 890
  console.log("RpcClient: writeChar is " + result);
  ```


### readChar

readChar(): number

从MessageParcel实例中读取单个字符值。

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

Y
yangguangzhao 已提交
893
**返回值:**
W
wangqinxiao 已提交
894 895

  | 类型 | 说明 |
Z
zengyawen 已提交
896
  | -------- | -------- |
Y
yangguangzhao 已提交
897
  | number | 返回单个字符值。 |
Z
zengyawen 已提交
898

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

Z
zengyawen 已提交
901 902
  ```
  let data = rpc.MessageParcel.create();
Y
yangguangzhao 已提交
903
  let result = data.writeChar(97);
Z
zengyawen 已提交
904 905 906 907 908 909 910 911 912 913 914 915
  console.log("RpcClient: writeChar is " + result);
  let ret = data.readChar();
  console.log("RpcClient: readChar is " + ret);
  ```


### writeString

writeString(val: string): boolean

将字符串值写入MessageParcel实例。

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

Y
yangguangzhao 已提交
918
**参数:**
W
wangqinxiao 已提交
919 920

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

Y
yangguangzhao 已提交
924
**返回值:**
W
wangqinxiao 已提交
925 926

  | 类型 | 说明 |
Z
zengyawen 已提交
927
  | -------- | -------- |
Y
yangguangzhao 已提交
928
  | boolean | 写入成功返回true,否则返回false。 |
Z
zengyawen 已提交
929

Y
yangguangzhao 已提交
930
**示例:**
Y
yangguangzhao 已提交
931

Z
zengyawen 已提交
932 933 934 935 936 937 938 939 940 941 942 943 944
  ```
  let data = rpc.MessageParcel.create();
  let result = data.writeString('abc');
  console.log("RpcClient: writeString  is " + result);
  ```


### readString

readString(): string

从MessageParcel实例读取字符串值。

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

Y
yangguangzhao 已提交
947
**返回值:**
W
wangqinxiao 已提交
948 949

  | 类型 | 说明 |
Z
zengyawen 已提交
950
  | -------- | -------- |
Y
yangguangzhao 已提交
951
  | string | 返回字符串值。 |
Z
zengyawen 已提交
952

Y
yangguangzhao 已提交
953
**示例:**
Y
yangguangzhao 已提交
954

Z
zengyawen 已提交
955 956 957 958 959 960 961 962 963 964 965 966 967 968 969
  ```
  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实例。

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

Y
yangguangzhao 已提交
972
**参数:**
W
wangqinxiao 已提交
973 974

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
975
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
976
  | val | [Sequenceable](#sequenceable) | 是 | 要写入的可序列对象。 |
Z
zengyawen 已提交
977

Y
yangguangzhao 已提交
978
**返回值:**
W
wangqinxiao 已提交
979 980

  | 类型 | 说明 |
Z
zengyawen 已提交
981
  | -------- | -------- |
Y
yangguangzhao 已提交
982
  | boolean | 写入成功返回true,否则返回false。 |
Z
zengyawen 已提交
983

Y
yangguangzhao 已提交
984
**示例:**
Y
yangguangzhao 已提交
985

Z
zengyawen 已提交
986 987
  ```
  class MySequenceable {
Y
yangguangzhao 已提交
988 989 990
      num: number;
      str: string;
      constructor(num, str) {
Z
zengyawen 已提交
991
          this.num = num;
Y
yangguangzhao 已提交
992
          this.str = str;
Z
zengyawen 已提交
993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017
      }
      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

readSequenceable(dataIn: Sequenceable) : boolean

从MessageParcel实例中读取成员变量到指定的对象(dataIn)。

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

Y
yangguangzhao 已提交
1020
**参数:**
W
wangqinxiao 已提交
1021 1022

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
1023
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
1024
  | dataIn | [Sequenceable](#sequenceable) | 是 | 需要从MessageParcel读取成员变量的对象。 |
Z
zengyawen 已提交
1025

Y
yangguangzhao 已提交
1026
**返回值:**
W
wangqinxiao 已提交
1027 1028

  | 类型 | 说明 |
Z
zengyawen 已提交
1029
  | -------- | -------- |
Y
yangguangzhao 已提交
1030
  | boolean | 如果反序列成功,则返回true;否则返回false。 |
Z
zengyawen 已提交
1031

Y
yangguangzhao 已提交
1032
**示例:**
Y
yangguangzhao 已提交
1033

Z
zengyawen 已提交
1034 1035
  ```
  class MySequenceable {
Y
yangguangzhao 已提交
1036 1037 1038
      num: number;
      str: string;
      constructor(num, str) {
Z
zengyawen 已提交
1039
          this.num = num;
Y
yangguangzhao 已提交
1040
          this.str = str;
Z
zengyawen 已提交
1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068
      }
      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实例。

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

Y
yangguangzhao 已提交
1071
**参数:**
W
wangqinxiao 已提交
1072 1073

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
1074
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
1075
  | byteArray | number[] | 是 | 要写入的字节数组。 |
Z
zengyawen 已提交
1076

Y
yangguangzhao 已提交
1077
**返回值:**
W
wangqinxiao 已提交
1078 1079

  | 类型 | 说明 |
Z
zengyawen 已提交
1080
  | -------- | -------- |
Y
yangguangzhao 已提交
1081
  | boolean | 写入成功返回true,否则返回false。 |
Z
zengyawen 已提交
1082

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

Z
zengyawen 已提交
1085 1086
  ```
  let data = rpc.MessageParcel.create();
Y
yangguangzhao 已提交
1087
  let ByteArrayVar = [1, 2, 3, 4, 5];
Z
zengyawen 已提交
1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098
  let result = data.writeByteArray(ByteArrayVar);
  console.log("RpcClient: writeByteArray is " + result);
  ```


### readByteArray

readByteArray(dataIn: number[]) : void

从MessageParcel实例读取字节数组。

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

Y
yangguangzhao 已提交
1101
**参数:**
W
wangqinxiao 已提交
1102 1103

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
1104
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
1105
  | dataIn | number[] | 是 | 要读取的字节数组。 |
Z
zengyawen 已提交
1106

Y
yangguangzhao 已提交
1107
**示例:**
Y
yangguangzhao 已提交
1108

Z
zengyawen 已提交
1109 1110
  ```
  let data = rpc.MessageParcel.create();
Y
yangguangzhao 已提交
1111
  let ByteArrayVar = [1, 2, 3, 4, 5];
Z
zengyawen 已提交
1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124
  let result = data.writeByteArray(ByteArrayVar);
  console.log("RpcClient: writeByteArray is " + result);
  let array = new Array(5);
  data.readByteArray(array);
  ```


### readByteArray

readByteArray(): number[]

从MessageParcel实例中读取字节数组。

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

Y
yangguangzhao 已提交
1127
**返回值:**
W
wangqinxiao 已提交
1128 1129

  | 类型 | 说明 |
Z
zengyawen 已提交
1130
  | -------- | -------- |
Y
yangguangzhao 已提交
1131
  | number[] | 返回字节数组。 |
Z
zengyawen 已提交
1132

Y
yangguangzhao 已提交
1133
**示例:**
Y
yangguangzhao 已提交
1134

Z
zengyawen 已提交
1135 1136
  ```
  let data = rpc.MessageParcel.create();
Y
yangguangzhao 已提交
1137
  let ByteArrayVar = [1, 2, 3, 4, 5];
Z
zengyawen 已提交
1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150
  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实例。

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

Y
yangguangzhao 已提交
1153
**参数:**
W
wangqinxiao 已提交
1154 1155

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
1156
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
1157
  | shortArray | number[] | 是 | 要写入的短整数数组。 |
Z
zengyawen 已提交
1158

Y
yangguangzhao 已提交
1159
**返回值:**
W
wangqinxiao 已提交
1160 1161

  | 类型 | 说明 |
Z
zengyawen 已提交
1162
  | -------- | -------- |
Y
yangguangzhao 已提交
1163
  | boolean | 写入返回true,否则返回false。 |
Z
zengyawen 已提交
1164

Y
yangguangzhao 已提交
1165
**示例:**
Y
yangguangzhao 已提交
1166

Z
zengyawen 已提交
1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179
  ```
  let data = rpc.MessageParcel.create();
  let result = data.writeShortArray([11, 12, 13]);
  console.log("RpcClient: writeShortArray is " + result);
  ```


### readShortArray

readShortArray(dataIn: number[]) : void

从MessageParcel实例中读取短整数数组。

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

Y
yangguangzhao 已提交
1182
**参数:**
W
wangqinxiao 已提交
1183 1184

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
1185
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
1186
  | dataIn | number[] | 是 | 要读取的短整数数组。 |
Z
zengyawen 已提交
1187

Y
yangguangzhao 已提交
1188
**示例:**
Y
yangguangzhao 已提交
1189

Z
zengyawen 已提交
1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204
  ```
  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实例中读取短整数数组。

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

Y
yangguangzhao 已提交
1207
**返回值:**
W
wangqinxiao 已提交
1208 1209

  | 类型 | 说明 |
Z
zengyawen 已提交
1210
  | -------- | -------- |
Y
yangguangzhao 已提交
1211
  | number[] | 返回短整数数组。 |
Z
zengyawen 已提交
1212

Y
yangguangzhao 已提交
1213
**示例:**
Y
yangguangzhao 已提交
1214

Z
zengyawen 已提交
1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229
  ```
  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实例。

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

Y
yangguangzhao 已提交
1232
**参数:**
W
wangqinxiao 已提交
1233 1234

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
1235
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
1236
  | intArray | number[] | 是 | 要写入的整数数组。 |
Z
zengyawen 已提交
1237

Y
yangguangzhao 已提交
1238
**返回值:**
W
wangqinxiao 已提交
1239 1240

  | 类型 | 说明 |
Z
zengyawen 已提交
1241
  | -------- | -------- |
Y
yangguangzhao 已提交
1242
  | boolean | 写入返回true,否则返回false。 |
Z
zengyawen 已提交
1243

Y
yangguangzhao 已提交
1244
**示例:**
Y
yangguangzhao 已提交
1245

Z
zengyawen 已提交
1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258
  ```
  let data = rpc.MessageParcel.create();
  let result = data.writeIntArray([100, 111, 112]);
  console.log("RpcClient: writeIntArray is " + result);
  ```


### readIntArray

readIntArray(dataIn: number[]) : void

从MessageParcel实例中读取整数数组。

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

Y
yangguangzhao 已提交
1261
**参数:**
W
wangqinxiao 已提交
1262 1263

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
1264
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
1265
  | dataIn | number[] | 是 | 要读取的整数数组。 |
Z
zengyawen 已提交
1266

Y
yangguangzhao 已提交
1267
**示例:**
Y
yangguangzhao 已提交
1268

Z
zengyawen 已提交
1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283
  ```
  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实例中读取整数数组。

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

Y
yangguangzhao 已提交
1286
**返回值:**
W
wangqinxiao 已提交
1287 1288

  | 类型 | 说明 |
Z
zengyawen 已提交
1289
  | -------- | -------- |
Y
yangguangzhao 已提交
1290
  | number[] | 返回整数数组。 |
Z
zengyawen 已提交
1291

Y
yangguangzhao 已提交
1292
**示例:**
Y
yangguangzhao 已提交
1293

Z
zengyawen 已提交
1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308
  ```
  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实例。

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

Y
yangguangzhao 已提交
1311
**参数:**
W
wangqinxiao 已提交
1312 1313

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
1314
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
1315
  | longArray | number[] | 是 | 要写入的长整数数组。 |
Z
zengyawen 已提交
1316

Y
yangguangzhao 已提交
1317
**返回值:**
W
wangqinxiao 已提交
1318 1319

  | 类型 | 说明 |
Z
zengyawen 已提交
1320
  | -------- | -------- |
Y
yangguangzhao 已提交
1321
  | boolean | 写入返回true,否则返回false。 |
Z
zengyawen 已提交
1322

Y
yangguangzhao 已提交
1323
**示例:**
Y
yangguangzhao 已提交
1324

Z
zengyawen 已提交
1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337
  ```
  let data = rpc.MessageParcel.create();
  let result = data.writeLongArray([1111, 1112, 1113]);
  console.log("RpcClient: writeLongArray is " + result);
  ```


### readLongArray

readLongArray(dataIn: number[]) : void

从MessageParcel实例读取长整数数组。

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

Y
yangguangzhao 已提交
1340
**参数:**
W
wangqinxiao 已提交
1341 1342

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
1343
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
1344
  | dataIn | number[] | 是 | 要读取的长整数数组。 |
Z
zengyawen 已提交
1345

Y
yangguangzhao 已提交
1346
**示例:**
Y
yangguangzhao 已提交
1347

Z
zengyawen 已提交
1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362
  ```
  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实例中读取长整数数组。

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

Y
yangguangzhao 已提交
1365
**返回值:**
W
wangqinxiao 已提交
1366 1367

  | 类型 | 说明 |
Z
zengyawen 已提交
1368
  | -------- | -------- |
Y
yangguangzhao 已提交
1369
  | number[] | 返回长整数数组。 |
Z
zengyawen 已提交
1370

Y
yangguangzhao 已提交
1371
**示例:**
Y
yangguangzhao 已提交
1372

Z
zengyawen 已提交
1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387
  ```
  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实例。

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

Y
yangguangzhao 已提交
1390
**参数:**
W
wangqinxiao 已提交
1391 1392

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

Y
yangguangzhao 已提交
1396
**返回值:**
W
wangqinxiao 已提交
1397 1398

  | 类型 | 说明 |
Z
zengyawen 已提交
1399
  | -------- | -------- |
Y
yangguangzhao 已提交
1400
  | boolean | 写入返回true,否则返回false。 |
Z
zengyawen 已提交
1401

Y
yangguangzhao 已提交
1402
**示例:**
Y
yangguangzhao 已提交
1403

Z
zengyawen 已提交
1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416
  ```
  let data = rpc.MessageParcel.create();
  let result = data.writeFloatArray([1.2, 1.3, 1.4]);
  console.log("RpcClient: writeFloatArray is " + result);
  ```


### readFloatArray

readFloatArray(dataIn: number[]) : void

从MessageParcel实例中读取浮点数组。

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

Y
yangguangzhao 已提交
1419
**参数:**
W
wangqinxiao 已提交
1420 1421

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


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

Z
zengyawen 已提交
1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442
  ```
  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实例中读取浮点数组。

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

Y
yangguangzhao 已提交
1445
**返回值:**
W
wangqinxiao 已提交
1446 1447

  | 类型 | 说明 |
Z
zengyawen 已提交
1448
  | -------- | -------- |
Y
yangguangzhao 已提交
1449
  | number[] | 返回浮点数组。 |
Z
zengyawen 已提交
1450

Y
yangguangzhao 已提交
1451
**示例:**
Y
yangguangzhao 已提交
1452

Z
zengyawen 已提交
1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467
  ```
  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实例。

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

Y
yangguangzhao 已提交
1470
**参数:**
W
wangqinxiao 已提交
1471 1472

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
1473
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
1474
  | doubleArray | number[] | 是 | 要写入的双精度浮点数组。 |
Z
zengyawen 已提交
1475

Y
yangguangzhao 已提交
1476
**返回值:**
W
wangqinxiao 已提交
1477 1478

  | 类型 | 说明 |
Z
zengyawen 已提交
1479
  | -------- | -------- |
Y
yangguangzhao 已提交
1480
  | boolean | 写入返回true,否则返回false。 |
Z
zengyawen 已提交
1481

Y
yangguangzhao 已提交
1482
**示例:**
Y
yangguangzhao 已提交
1483

Z
zengyawen 已提交
1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496
  ```
  let data = rpc.MessageParcel.create();
  let result = data.writeDoubleArray([11.1, 12.2, 13.3]);
  console.log("RpcClient: writeDoubleArray is " + result);
  ```


### readDoubleArray

readDoubleArray(dataIn: number[]) : void

从MessageParcel实例中读取双精度浮点数组。

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

Y
yangguangzhao 已提交
1499
**参数:**
W
wangqinxiao 已提交
1500 1501

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
1502
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
1503
  | dataIn | number[] | 是 | 要读取的双精度浮点数组。 |
Z
zengyawen 已提交
1504

Y
yangguangzhao 已提交
1505
**示例:**
Y
yangguangzhao 已提交
1506

Z
zengyawen 已提交
1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521
  ```
  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实例读取双精度浮点数组。

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

Y
yangguangzhao 已提交
1524
**返回值:**
W
wangqinxiao 已提交
1525 1526

  | 类型 | 说明 |
Z
zengyawen 已提交
1527
  | -------- | -------- |
Y
yangguangzhao 已提交
1528
  | number[] | 返回双精度浮点数组。 |
Z
zengyawen 已提交
1529

Y
yangguangzhao 已提交
1530
**示例:**
Y
yangguangzhao 已提交
1531

Z
zengyawen 已提交
1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546
  ```
  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实例。

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

Y
yangguangzhao 已提交
1549
**参数:**
W
wangqinxiao 已提交
1550 1551

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
1552
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
1553
  | booleanArray | boolean[] | 是 | 要写入的布尔数组。 |
Z
zengyawen 已提交
1554

Y
yangguangzhao 已提交
1555
**返回值:**
W
wangqinxiao 已提交
1556 1557

  | 类型 | 说明 |
Z
zengyawen 已提交
1558
  | -------- | -------- |
Y
yangguangzhao 已提交
1559
  | boolean | 写入成功返回true,否则返回false。 |
Z
zengyawen 已提交
1560

Y
yangguangzhao 已提交
1561
**示例:**
Y
yangguangzhao 已提交
1562

Z
zengyawen 已提交
1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575
  ```
  let data = rpc.MessageParcel.create();
  let result = data.writeBooleanArray([false, true, false]);
  console.log("RpcClient: writeBooleanArray is " + result);
  ```


### readBooleanArray

readBooleanArray(dataIn: boolean[]) : void

从MessageParcel实例中读取布尔数组。

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

Y
yangguangzhao 已提交
1578
**参数:**
W
wangqinxiao 已提交
1579 1580

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
1581
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
1582
  | dataIn | boolean[] | 是 | 要读取的布尔数组。 |
Z
zengyawen 已提交
1583

Y
yangguangzhao 已提交
1584
**示例:**
Y
yangguangzhao 已提交
1585

Z
zengyawen 已提交
1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600
  ```
  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实例中读取布尔数组。

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

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

  | 类型 | 说明 |
Z
zengyawen 已提交
1606
  | -------- | -------- |
Y
yangguangzhao 已提交
1607 1608
  | boolean[] | 返回布尔数组。 |

Z
zengyawen 已提交
1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624

  ```
  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实例。

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

Y
yangguangzhao 已提交
1627
**参数:**
W
wangqinxiao 已提交
1628 1629

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
1630
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
1631
  | charArray | number[] | 是 | 要写入的单个字符数组。 |
Z
zengyawen 已提交
1632

Y
yangguangzhao 已提交
1633
**返回值:**
W
wangqinxiao 已提交
1634 1635

  | 类型 | 说明 |
Z
zengyawen 已提交
1636
  | -------- | -------- |
Y
yangguangzhao 已提交
1637
  | boolean | 写入成功返回true,否则返回false。 |
Z
zengyawen 已提交
1638

Y
yangguangzhao 已提交
1639
**示例:**
Y
yangguangzhao 已提交
1640

Z
zengyawen 已提交
1641 1642
  ```
  let data = rpc.MessageParcel.create();
Y
yangguangzhao 已提交
1643
  let result = data.writeCharArray([97, 98, 88]);
Z
zengyawen 已提交
1644 1645 1646 1647 1648 1649
  console.log("RpcClient: writeCharArray is " + result);
  ```


### readCharArray

Y
yangguangzhao 已提交
1650
readCharArray(dataIn: number[]) : void
Z
zengyawen 已提交
1651 1652 1653

从MessageParcel实例中读取单个字符数组。

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

Y
yangguangzhao 已提交
1656
**参数:**
W
wangqinxiao 已提交
1657 1658

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
1659
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
1660
  | dataIn | number[] | 是 | 要读取的单个字符数组。 |
Z
zengyawen 已提交
1661

Y
yangguangzhao 已提交
1662
**示例:**
Y
yangguangzhao 已提交
1663

Z
zengyawen 已提交
1664 1665
  ```
  let data = rpc.MessageParcel.create();
Y
yangguangzhao 已提交
1666
  let result = data.writeCharArray([97, 98, 99]);
Z
zengyawen 已提交
1667 1668 1669 1670 1671 1672 1673 1674
  console.log("RpcClient: writeCharArray is " + result);
  let array = new Array(3);
  data.readCharArray(array);
  ```


### readCharArray

Y
yangguangzhao 已提交
1675
readCharArray(): number[]
Z
zengyawen 已提交
1676 1677 1678

从MessageParcel实例读取单个字符数组。

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

Y
yangguangzhao 已提交
1681
**返回值:**
W
wangqinxiao 已提交
1682 1683

  | 类型 | 说明 |
Z
zengyawen 已提交
1684
  | -------- | -------- |
Y
yangguangzhao 已提交
1685
  | number[] | 返回单个字符数组。 |
Z
zengyawen 已提交
1686

Y
yangguangzhao 已提交
1687
**示例:**
Y
yangguangzhao 已提交
1688

Z
zengyawen 已提交
1689 1690
  ```
  let data = rpc.MessageParcel.create();
Y
yangguangzhao 已提交
1691
  let result = data.writeCharArray([97, 98, 99]);
Z
zengyawen 已提交
1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703
  console.log("RpcClient: writeCharArray is " + result);
  let array = data.readCharArray();
  console.log("RpcClient: readCharArray is " + array);
  ```


### writeStringArray

writeStringArray(stringArray: string[]): boolean

将字符串数组写入MessageParcel实例。

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

Y
yangguangzhao 已提交
1706
**参数:**
W
wangqinxiao 已提交
1707 1708

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

Y
yangguangzhao 已提交
1712
**返回值:**
W
wangqinxiao 已提交
1713 1714

  | 类型 | 说明 |
Z
zengyawen 已提交
1715
  | -------- | -------- |
Y
yangguangzhao 已提交
1716
  | boolean | 写入成功返回true,否则返回false。 |
Z
zengyawen 已提交
1717

Y
yangguangzhao 已提交
1718
**示例:**
Y
yangguangzhao 已提交
1719

Z
zengyawen 已提交
1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732
  ```
  let data = rpc.MessageParcel.create();
  let result = data.writeStringArray(["abc", "def"]);
  console.log("RpcClient: writeStringArray is " + result);
  ```


### readStringArray

readStringArray(dataIn: string[]) : void

从MessageParcel实例读取字符串数组。

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

Y
yangguangzhao 已提交
1735
**参数:**
W
wangqinxiao 已提交
1736 1737

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
1738
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
1739
  | dataIn | string[] | 是 | 要读取的字符串数组。 |
Z
zengyawen 已提交
1740

Y
yangguangzhao 已提交
1741
**示例:**
Y
yangguangzhao 已提交
1742

Z
zengyawen 已提交
1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757
  ```
  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实例读取字符串数组。

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

Y
yangguangzhao 已提交
1760
**返回值:**
W
wangqinxiao 已提交
1761 1762

  | 类型 | 说明 |
Z
zengyawen 已提交
1763
  | -------- | -------- |
Y
yangguangzhao 已提交
1764
  | string[] | 返回字符串数组。 |
Z
zengyawen 已提交
1765

Y
yangguangzhao 已提交
1766
**示例:**
Y
yangguangzhao 已提交
1767

Z
zengyawen 已提交
1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782
  ```
  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写入“指示未发生异常”的信息。

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

Y
yangguangzhao 已提交
1785
**示例:**
Y
yangguangzhao 已提交
1786

Z
zengyawen 已提交
1787
  ```
Y
yangguangzhao 已提交
1788 1789
  class MyDeathRecipient {
      onRemoteDied() {
Y
yangguangzhao 已提交
1790
          console.log("server died");
Y
yangguangzhao 已提交
1791 1792
      }
  }
Z
zengyawen 已提交
1793 1794 1795 1796
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
Y
yangguangzhao 已提交
1797 1798 1799 1800 1801 1802 1803 1804 1805
      addDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      removeDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      isObjectDead(): boolean {
          return false;
      }
Z
zengyawen 已提交
1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825
      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中读取异常。

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

Y
yangguangzhao 已提交
1828
**示例:**
Y
yangguangzhao 已提交
1829

Z
zengyawen 已提交
1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845
  ```
  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 已提交
1846 1847
      "bundleName": "com.ohos.server",
      "abilityName": "com.ohos.server.MainAbility",
Z
zengyawen 已提交
1848 1849 1850 1851 1852 1853 1854
  };
  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");
1855
  proxy.sendRequestAsync(1, data, reply, option)
Z
zengyawen 已提交
1856 1857
      .then(function(errCode) {
          if (errCode === 0) {
1858
              console.log("sendRequestAsync got result");
Z
zengyawen 已提交
1859 1860 1861 1862
              reply.readException();
              let msg = reply.readString();
              console.log("RPCTest: reply msg: " + msg);
          } else {
1863
              console.log("RPCTest: sendRequestAsync failed, errCode: " + errCode);
Z
zengyawen 已提交
1864 1865
          }
      }).catch(function(e) {
1866
          console.log("RPCTest: sendRequestAsync got exception: " + e.message);
Z
zengyawen 已提交
1867
      }).finally (() => {
1868
          console.log("RPCTest: sendRequestAsync ends, reclaim parcel");
Z
zengyawen 已提交
1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880
          data.reclaim();
          reply.reclaim();
      });
  ```


### writeSequenceableArray

writeSequenceableArray(sequenceableArray: Sequenceable[]): boolean

将可序列化对象数组写入MessageParcel实例。

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

Y
yangguangzhao 已提交
1883
**参数:**
W
wangqinxiao 已提交
1884 1885

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
1886
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
1887
  | sequenceableArray | Sequenceable[] | 是 | 要写入的可序列化对象数组。 |
Z
zengyawen 已提交
1888

Y
yangguangzhao 已提交
1889
**返回值:**
W
wangqinxiao 已提交
1890 1891

  | 类型 | 说明 |
Z
zengyawen 已提交
1892
  | -------- | -------- |
Y
yangguangzhao 已提交
1893
  | boolean | 写入成功返回true,否则返回false。 |
Z
zengyawen 已提交
1894

Y
yangguangzhao 已提交
1895
**示例:**
Y
yangguangzhao 已提交
1896

Z
zengyawen 已提交
1897 1898
  ```
  class MySequenceable {
Y
yangguangzhao 已提交
1899 1900 1901
      num: number;
      str: string;
      constructor(num, str) {
Z
zengyawen 已提交
1902
          this.num = num;
Y
yangguangzhao 已提交
1903
          this.str = str;
Z
zengyawen 已提交
1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931
      }
      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实例读取可序列化对象数组。

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

Y
yangguangzhao 已提交
1934
**参数:**
W
wangqinxiao 已提交
1935 1936

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
1937
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
1938
  | sequenceableArray | Sequenceable[] | 是 | 要读取的可序列化对象数组。 |
Z
zengyawen 已提交
1939

Y
yangguangzhao 已提交
1940
**示例:**
Y
yangguangzhao 已提交
1941

Z
zengyawen 已提交
1942 1943
  ```
  class MySequenceable {
Y
yangguangzhao 已提交
1944 1945 1946
      num: number;
      str: string;
      constructor(num, str) {
Z
zengyawen 已提交
1947
          this.num = num;
Y
yangguangzhao 已提交
1948
          this.str = str;
Z
zengyawen 已提交
1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978
      }
      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。

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

Y
yangguangzhao 已提交
1981
**参数:**
W
wangqinxiao 已提交
1982 1983

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
1984
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
1985
  | objectArray | IRemoteObject[] | 是 | 要写入MessageParcel的IRemoteObject对象数组。 |
Z
zengyawen 已提交
1986

Y
yangguangzhao 已提交
1987
**返回值:**
W
wangqinxiao 已提交
1988 1989

  | 类型 | 说明 |
Z
zengyawen 已提交
1990
  | -------- | -------- |
Y
yangguangzhao 已提交
1991
  | boolean | 如果IRemoteObject对象数组成功写入MessageParcel,则返回true;如果对象为null或数组写入MessageParcel失败,则返回false。 |
Z
zengyawen 已提交
1992

Y
yangguangzhao 已提交
1993
**示例:**
Y
yangguangzhao 已提交
1994

Z
zengyawen 已提交
1995
  ```
Y
yangguangzhao 已提交
1996 1997
  class MyDeathRecipient {
      onRemoteDied() {
Y
yangguangzhao 已提交
1998
          console.log("server died");
Y
yangguangzhao 已提交
1999 2000
      }
  }
Z
zengyawen 已提交
2001 2002 2003 2004 2005
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
          this.attachLocalInterface(this, descriptor);
      }
Y
yangguangzhao 已提交
2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017
      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 已提交
2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031
  }
  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对象数组。

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

Y
yangguangzhao 已提交
2034
**参数:**
W
wangqinxiao 已提交
2035 2036

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
2037
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
2038
  | objects | IRemoteObject[] | 是 | 从MessageParcel读取的IRemoteObject对象数组。 |
Z
zengyawen 已提交
2039

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

Z
zengyawen 已提交
2042
  ```
Y
yangguangzhao 已提交
2043 2044
  class MyDeathRecipient {
      onRemoteDied() {
Y
yangguangzhao 已提交
2045
          console.log("server died");
Y
yangguangzhao 已提交
2046 2047
      }
  }
Z
zengyawen 已提交
2048 2049 2050 2051 2052
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
          this.attachLocalInterface(this, descriptor);
      }
Y
yangguangzhao 已提交
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064
      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 已提交
2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079
  }
  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对象数组。

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

Y
yangguangzhao 已提交
2082
**返回值:**
W
wangqinxiao 已提交
2083 2084

  | 类型 | 说明 |
Z
zengyawen 已提交
2085
  | -------- | -------- |
Y
yangguangzhao 已提交
2086
  | IRemoteObject[] | 返回IRemoteObject对象数组。 |
Z
zengyawen 已提交
2087

Y
yangguangzhao 已提交
2088
**示例:**
Y
yangguangzhao 已提交
2089

Z
zengyawen 已提交
2090
  ```
Y
yangguangzhao 已提交
2091 2092
  class MyDeathRecipient {
      onRemoteDied() {
Y
yangguangzhao 已提交
2093
          console.log("server died");
Y
yangguangzhao 已提交
2094 2095
      }
  }
Z
zengyawen 已提交
2096 2097 2098 2099 2100
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
          this.attachLocalInterface(this, descriptor);
      }
Y
yangguangzhao 已提交
2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112
      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 已提交
2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128
  }
  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

关闭给定的文件描述符。

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

Y
yangguangzhao 已提交
2131
**参数:**
W
wangqinxiao 已提交
2132 2133

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
2134
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
2135
  | fd | number | 是 | 要关闭的文件描述符。 |
Z
zengyawen 已提交
2136

Y
yangguangzhao 已提交
2137
**示例:**
Y
yangguangzhao 已提交
2138

Z
zengyawen 已提交
2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152
  ```
  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

复制给定的文件描述符。

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

Y
yangguangzhao 已提交
2155
**参数:**
W
wangqinxiao 已提交
2156 2157

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
2158
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
2159
  | fd | number | 是 | 表示已存在的文件描述符。 |
Z
zengyawen 已提交
2160

Y
yangguangzhao 已提交
2161
**返回值:**
W
wangqinxiao 已提交
2162 2163

  | 类型 | 说明 |
Z
zengyawen 已提交
2164
  | -------- | -------- |
Y
yangguangzhao 已提交
2165
  | number | 返回新的文件描述符。 |
Z
zengyawen 已提交
2166

Y
yangguangzhao 已提交
2167
**示例:**
Y
yangguangzhao 已提交
2168

Z
zengyawen 已提交
2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182
  ```
  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对象是否包含文件描述符。

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

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

  | 类型 | 说明 |
Z
zengyawen 已提交
2188
  | -------- | -------- |
Y
yangguangzhao 已提交
2189
  | boolean | 如果此MessageParcel对象包含文件描述符,则返回true;否则返回false。 |
Z
zengyawen 已提交
2190

Y
yangguangzhao 已提交
2191
**示例:**
Y
yangguangzhao 已提交
2192

Z
zengyawen 已提交
2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211
  ```
  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。

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

Y
yangguangzhao 已提交
2214
**参数:**
W
wangqinxiao 已提交
2215 2216

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
2217
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
2218
  | fd | number | 是 | 文件描述符。 |
Z
zengyawen 已提交
2219

Y
yangguangzhao 已提交
2220
**返回值:**
W
wangqinxiao 已提交
2221 2222

  | 类型 | 说明 |
Z
zengyawen 已提交
2223
  | -------- | -------- |
Y
yangguangzhao 已提交
2224
  | boolean | 如果操作成功,则返回true;否则返回false。 |
Z
zengyawen 已提交
2225

Y
yangguangzhao 已提交
2226
**示例:**
Y
yangguangzhao 已提交
2227

Z
zengyawen 已提交
2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243
  ```
  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中读取文件描述符。

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

Y
yangguangzhao 已提交
2246
**返回值:**
W
wangqinxiao 已提交
2247 2248

  | 类型 | 说明 |
Z
zengyawen 已提交
2249
  | -------- | -------- |
Y
yangguangzhao 已提交
2250
  | number | 返回文件描述符。 |
Z
zengyawen 已提交
2251

Y
yangguangzhao 已提交
2252
**示例:**
Y
yangguangzhao 已提交
2253

Z
zengyawen 已提交
2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270
  ```
  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。

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

Y
yangguangzhao 已提交
2273
**参数:**
W
wangqinxiao 已提交
2274 2275

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
2276
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
2277
  | ashmem | Ashmem | 是 | 要写入MessageParcel的匿名共享对象。 |
Z
zengyawen 已提交
2278

Y
yangguangzhao 已提交
2279
**返回值:**
W
wangqinxiao 已提交
2280 2281

  | 类型 | 说明 |
Z
zengyawen 已提交
2282
  | -------- | -------- |
Y
yangguangzhao 已提交
2283
  | boolean | 如果匿名共享对象成功写入此MessageParcel,则返回true;否则返回false。 |
Z
zengyawen 已提交
2284

Y
yangguangzhao 已提交
2285
**示例:**
Y
yangguangzhao 已提交
2286

Z
zengyawen 已提交
2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300
  ```
  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读取匿名共享对象。

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

Y
yangguangzhao 已提交
2303
**返回值:**
W
wangqinxiao 已提交
2304 2305

  | 类型 | 说明 |
Z
zengyawen 已提交
2306
  | -------- | -------- |
Y
yangguangzhao 已提交
2307
  | Ashmem | 返回匿名共享对象。 |
Z
zengyawen 已提交
2308

Y
yangguangzhao 已提交
2309
**示例:**
Y
yangguangzhao 已提交
2310

Z
zengyawen 已提交
2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326
  ```
  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可以容纳的最大原始数据量。

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

Y
yangguangzhao 已提交
2329
**返回值:**
W
wangqinxiao 已提交
2330 2331

  | 类型 | 说明 |
Z
zengyawen 已提交
2332
  | -------- | -------- |
Y
yangguangzhao 已提交
2333
  | number | 返回MessageParcel可以容纳的最大原始数据量,即128&nbsp;Mb。 |
Z
zengyawen 已提交
2334

Y
yangguangzhao 已提交
2335
**示例:**
Y
yangguangzhao 已提交
2336

Z
zengyawen 已提交
2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349
  ```
  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对象。

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

Y
yangguangzhao 已提交
2352
**参数:**
W
wangqinxiao 已提交
2353 2354

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
2355
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
2356 2357
  | rawData | number[] | 是 | 要写入的原始数据。 |
  | size | number | 是 | 发送的原始数据大小,以字节为单位。 |
Z
zengyawen 已提交
2358

Y
yangguangzhao 已提交
2359
**返回值:**
W
wangqinxiao 已提交
2360 2361

  | 类型 | 说明 |
Z
zengyawen 已提交
2362
  | -------- | -------- |
Y
yangguangzhao 已提交
2363
  | boolean | 如果操作成功,则返回true;否则返回false。 |
Z
zengyawen 已提交
2364

Y
yangguangzhao 已提交
2365
**示例:**
Y
yangguangzhao 已提交
2366

Z
zengyawen 已提交
2367 2368
  ```
  let parcel = new rpc.MessageParcel();
Y
yangguangzhao 已提交
2369
  let arr = [1, 2, 3, 4, 5];
Z
zengyawen 已提交
2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380
  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读取原始数据。

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

Y
yangguangzhao 已提交
2383
**参数:**
W
wangqinxiao 已提交
2384 2385

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
2386
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
2387
  | size | number | 是 | 要读取的原始数据的大小。 |
Z
zengyawen 已提交
2388

Y
yangguangzhao 已提交
2389
**返回值:**
W
wangqinxiao 已提交
2390 2391

  | 类型 | 说明 |
Z
zengyawen 已提交
2392
  | -------- | -------- |
Y
yangguangzhao 已提交
2393
  | number[] | 返回原始数据(以字节为单位)。 |
Z
zengyawen 已提交
2394

Y
yangguangzhao 已提交
2395
**示例:**
Y
yangguangzhao 已提交
2396

Z
zengyawen 已提交
2397 2398
  ```
  let parcel = new rpc.MessageParcel();
Y
yangguangzhao 已提交
2399
  let arr = [1, 2, 3, 4, 5];
Z
zengyawen 已提交
2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416
  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);
  ```

## Sequenceable

在进程间通信(IPC)期间,将类的对象写入MessageParcel并从MessageParcel中恢复它们。


### marshalling

marshalling(dataOut: MessageParcel): boolean

将此可序列对象封送到MessageParcel中。

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

Y
yangguangzhao 已提交
2419
**参数:**
W
wangqinxiao 已提交
2420 2421

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
2422
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
2423
  | dataOut | [MessageParcel](#messageparcel) | 是 | 可序列对象将被封送到的MessageParcel对象。 |
Z
zengyawen 已提交
2424

Y
yangguangzhao 已提交
2425
**返回值:**
W
wangqinxiao 已提交
2426 2427

  | 类型 | 说明 |
Z
zengyawen 已提交
2428
  | -------- | -------- |
Y
yangguangzhao 已提交
2429
  | boolean | 如果封送成功,则返回true;否则返回false。 |
Z
zengyawen 已提交
2430

Y
yangguangzhao 已提交
2431
**示例:**
Y
yangguangzhao 已提交
2432

Z
zengyawen 已提交
2433 2434
  ```
  class MySequenceable {
Y
yangguangzhao 已提交
2435 2436 2437
      num: number;
      str: string;
      constructor(num, str) {
Z
zengyawen 已提交
2438
          this.num = num;
Y
yangguangzhao 已提交
2439
          this.str = str;
Z
zengyawen 已提交
2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467
      }
      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

unmarshalling(dataIn: MessageParcel) : boolean

从MessageParcel中解封此可序列对象。

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

Y
yangguangzhao 已提交
2470
**参数:**
W
wangqinxiao 已提交
2471 2472

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
2473
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
2474
  | dataIn | [MessageParcel](#messageparcel) | 是 | 已将可序列对象封送到其中的MessageParcel对象。 |
Z
zengyawen 已提交
2475

Y
yangguangzhao 已提交
2476
**返回值:**
W
wangqinxiao 已提交
2477 2478

  | 类型 | 说明 |
Z
zengyawen 已提交
2479
  | -------- | -------- |
Y
yangguangzhao 已提交
2480
  | boolean | 如果可序列化成功,则返回true;否则返回false。 |
Z
zengyawen 已提交
2481

Y
yangguangzhao 已提交
2482
**示例:**
Y
yangguangzhao 已提交
2483

Z
zengyawen 已提交
2484 2485
  ```
  class MySequenceable {
Y
yangguangzhao 已提交
2486 2487 2488
      num: number;
      str: string;
      constructor(num, str) {
Z
zengyawen 已提交
2489
          this.num = num;
Y
yangguangzhao 已提交
2490
          this.str = str;
Z
zengyawen 已提交
2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523
      }
      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

需派生类实现,获取代理或远端对象。

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

Y
yangguangzhao 已提交
2526
**返回值:**
W
wangqinxiao 已提交
2527 2528

  | 类型 | 说明 |
Z
zengyawen 已提交
2529
  | -------- | -------- |
Y
yangguangzhao 已提交
2530
  | [IRemoteObject](#iremoteobject) | 如果调用者是[RemoteObject](#ashmem8)对象,则直接返回本身;如果调用者是[RemoteProxy](#remoteproxy)对象,则返回它的持有者[IRemoteObject](#iremoteobject)。 |
Z
zengyawen 已提交
2531

Y
yangguangzhao 已提交
2532
**示例:**
Y
yangguangzhao 已提交
2533

Z
zengyawen 已提交
2534 2535 2536 2537 2538 2539 2540 2541
  ```
  class TestAbility extends rpc.RemoteObject {
      asObject() {
          return this;
      }
  }
  ```

Y
yangguangzhao 已提交
2542
**示例:**
Y
yangguangzhao 已提交
2543

Z
zengyawen 已提交
2544 2545
  ```
  class TestProxy {
Y
yangguangzhao 已提交
2546
      remote: rpc.RemoteObject;
Z
zengyawen 已提交
2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567
      constructor(remote) {
          this.remote = remote;
      }
      asObject() {
          return this.remote;
      }
  }
  ```


## DeathRecipient

用于订阅远端对象的死亡通知。当被订阅该通知的远端对象死亡时,本端可收到消息,调用[onRemoteDied](#onremotedied)接口。远端对象死亡可以为远端对象所在进程死亡,远端对象所在设备关机或重启,当远端对象与本端对象属于不同设备时,也可为远端对象离开组网时。


### onRemoteDied

onRemoteDied(): void

在成功添加死亡通知订阅后,当远端对象死亡时,将自动调用本方法。

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

Y
yangguangzhao 已提交
2570
**示例:**
Y
yangguangzhao 已提交
2571

Z
zengyawen 已提交
2572 2573 2574
  ```
  class MyDeathRecipient {
      onRemoteDied() {
Y
yangguangzhao 已提交
2575
          console.log("server died");
Z
zengyawen 已提交
2576 2577 2578 2579 2580 2581 2582 2583 2584
      }
  }
  ```


## SendRequestResult<sup>8+</sup>

发送请求的响应结果。

Y
yangguangzhao 已提交
2585 2586 2587
**系统能力**:以下各项对应的系统能力均为SystemCapability.Communication.IPC.Core。

  | 参数 | 值 | 说明 |
Z
zengyawen 已提交
2588
| -------- | -------- | -------- |
Y
yangguangzhao 已提交
2589 2590 2591 2592
| errCode | number | 错误码。 |
| code | number | 消息代码。 |
| data | MessageParcel | 发送给对端进程的MessageParcel对象。 |
| reply | MessageParcel | 对端进程返回的MessageParcel对象。 |
Z
zengyawen 已提交
2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605


## IRemoteObject

该接口可用于查询或获取接口描述符、添加或删除死亡通知、转储对象状态到特定文件、发送消息。


### queryLocalInterface

queryLocalInterface(descriptor: string): IRemoteBroker

查询接口。

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

Y
yangguangzhao 已提交
2608
**参数:**
W
wangqinxiao 已提交
2609 2610

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
2611
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
2612
  | descriptor | string | 是 | 接口描述符的字符串。 |
Z
zengyawen 已提交
2613

Y
yangguangzhao 已提交
2614
**返回值:**
W
wangqinxiao 已提交
2615 2616

  | 类型 | 说明 |
Z
zengyawen 已提交
2617
  | -------- | -------- |
Y
yangguangzhao 已提交
2618
  | IRemoteBroker | 返回绑定到指定接口描述符的IRemoteBroker对象。 |
Z
zengyawen 已提交
2619 2620


Y
yangguangzhao 已提交
2621
### sendRequest<sup>(deprecated)</sup>
Z
zengyawen 已提交
2622

W
wangqinxiao 已提交
2623 2624
sendRequest(code : number, data : MessageParcel, reply : MessageParcel, options : MessageOption): boolean

Y
yangguangzhao 已提交
2625
> **说明:**
2626
> 从 API Version 8 开始废弃,建议使用[sendRequestAsync<sup>9+</sup>](#sendrequestasync9)替代。
Z
zengyawen 已提交
2627 2628 2629

以同步或异步方式向对端进程发送MessageParcel消息。如果为选项设置了异步模式,则期约立即兑现,reply报文里没有内容。如果为选项设置了同步模式,则期约将在sendRequest返回时兑现,回复内容在reply报文里。

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

Y
yangguangzhao 已提交
2632
**参数:**
W
wangqinxiao 已提交
2633 2634

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
2635
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
2636 2637 2638 2639
  | code | number | 是 | 本次请求调用的消息码,由通信双方确定。如果接口由IDL工具生成,则消息代码由IDL自动生成。 |
  | data | [MessageParcel](#messageparcel) | 是 | 保存待发送数据的&nbsp;MessageParcel对象。 |
  | reply | [MessageParcel](#messageparcel) | 是 | 接收应答数据的MessageParcel对象。 |
  | options | [MessageOption](#messageoption) | 是 | 本次请求的同异步模式,默认同步调用。 |
Z
zengyawen 已提交
2640

Y
yangguangzhao 已提交
2641
**返回值:**
W
wangqinxiao 已提交
2642 2643

  | 类型 | 说明 |
Z
zengyawen 已提交
2644
  | -------- | -------- |
Y
yangguangzhao 已提交
2645
  | boolean | 返回一个布尔值,true表示成功,false表示失败。|
Z
zengyawen 已提交
2646 2647


2648 2649
### sendRequest<sup>8+(deprecated)</sup>

W
wangqinxiao 已提交
2650 2651
sendRequest(code : number, data : MessageParcel, reply : MessageParcel, options : MessageOption): Promise&lt;SendRequestResult&gt;

2652 2653
> **说明:**
> 从 API Version 9 开始废弃,建议使用[sendRequestAsync<sup>9+</sup>](#sendrequestasync9)替代。
Z
zengyawen 已提交
2654

Y
yangguangzhao 已提交
2655 2656 2657 2658
以同步或异步方式向对端进程发送MessageParcel消息。如果为选项设置了异步模式,则期约立即兑现,reply报文里没有内容。如果为选项设置了同步模式,则期约将在sendRequest返回时兑现,回复内容在reply报文里。

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

2659
**参数:**
W
wangqinxiao 已提交
2660 2661

  | 参数名 | 类型 | 必填 | 说明 |
2662 2663 2664 2665 2666 2667 2668
  | -------- | -------- | -------- | -------- |
  | code | number | 是 | 本次请求调用的消息码,由通信双方确定。如果接口由IDL工具生成,则消息代码由IDL自动生成。 |
  | data | [MessageParcel](#messageparcel) | 是 | 保存待发送数据的&nbsp;MessageParcel对象。 |
  | reply | [MessageParcel](#messageparcel) | 是 | 接收应答数据的MessageParcel对象。 |
  | options | [MessageOption](#messageoption) | 是 | 本次请求的同异步模式,默认同步调用。 |

**返回值:**
W
wangqinxiao 已提交
2669 2670

  | 类型 | 说明 |
2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681
  | -------- | -------- |
  | Promise&lt;SendRequestResult&gt; | 返回一个期约,兑现值是sendRequestResult实例。|

### sendRequestAsync<sup>9+</sup>

sendRequestAsync(code : number, data : MessageParcel, reply : MessageParcel, options : MessageOption): Promise&lt;SendRequestResult&gt;

以同步或异步方式向对端进程发送MessageParcel消息。如果为选项设置了异步模式,则期约立即兑现,reply报文里没有内容。如果为选项设置了同步模式,则期约将在sendRequestAsync返回时兑现,回复内容在reply报文里。

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

Y
yangguangzhao 已提交
2682
**参数:**
W
wangqinxiao 已提交
2683 2684

  | 参数名 | 类型 | 必填 | 说明 |
Y
yangguangzhao 已提交
2685 2686 2687 2688 2689 2690 2691
  | -------- | -------- | -------- | -------- |
  | code | number | 是 | 本次请求调用的消息码,由通信双方确定。如果接口由IDL工具生成,则消息代码由IDL自动生成。 |
  | data | [MessageParcel](#messageparcel) | 是 | 保存待发送数据的&nbsp;MessageParcel对象。 |
  | reply | [MessageParcel](#messageparcel) | 是 | 接收应答数据的MessageParcel对象。 |
  | options | [MessageOption](#messageoption) | 是 | 本次请求的同异步模式,默认同步调用。 |

**返回值:**
W
wangqinxiao 已提交
2692 2693

  | 类型 | 说明 |
Y
yangguangzhao 已提交
2694 2695 2696 2697 2698
  | -------- | -------- |
  | Promise&lt;SendRequestResult&gt; | 返回一个期约,兑现值是sendRequestResult实例。|

### sendRequest<sup>8+</sup>

Z
zengyawen 已提交
2699 2700 2701 2702
sendRequest(code: number, data: MessageParcel, reply: MessageParcel, options: MessageOption, callback: AsyncCallback&lt;SendRequestResult&gt;): void

以同步或异步方式向对端进程发送MessageParcel消息。如果为选项设置了异步模式,则立即收到回调,reply报文里没有内容。如果为选项设置了同步模式,则将在sendRequest返回时收到回调,回复内容在reply报文里。

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

Y
yangguangzhao 已提交
2705
**参数:**
W
wangqinxiao 已提交
2706 2707

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
2708
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
2709 2710 2711 2712 2713
  | code | number | 是 | 本次请求调用的消息码,由通信双方确定。如果接口由IDL工具生成,则消息代码由IDL自动生成。 |
  | data | [MessageParcel](#messageparcel) | 是 | 保存待发送数据的&nbsp;MessageParcel对象。 |
  | reply | [MessageParcel](#messageparcel) | 是 | 接收应答数据的MessageParcel对象。 |
  | options | [MessageOption](#messageoption) | 是 | 本次请求的同异步模式,默认同步调用。 |
  | callback | AsyncCallback&lt;SendRequestResult&gt; | 是 | 接收发送结果的回调。 |
Z
zengyawen 已提交
2714 2715 2716 2717 2718 2719 2720 2721


### addDeathrecipient

addDeathRecipient(recipient: DeathRecipient, flags: number): boolean

注册用于接收远程对象死亡通知的回调。如果与RemoteProxy对象匹配的远程对象进程死亡,则调用此方法。

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

Y
yangguangzhao 已提交
2724
**参数:**
W
wangqinxiao 已提交
2725 2726

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
2727
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
2728 2729
  | recipient | [DeathRecipient](#deathrecipient) | 是 | 要注册的回调。 |
  | flags | number | 是 | 死亡通知标志。 |
Z
zengyawen 已提交
2730

Y
yangguangzhao 已提交
2731
**返回值:**
W
wangqinxiao 已提交
2732 2733

  | 类型 | 说明 |
Z
zengyawen 已提交
2734
  | -------- | -------- |
Y
yangguangzhao 已提交
2735
  | boolean | 如果回调注册成功,则返回true;否则返回false。 |
Z
zengyawen 已提交
2736 2737 2738 2739 2740 2741 2742 2743


### removeDeathRecipient

removeDeathRecipient(recipient: DeathRecipient, flags: number): boolean

注销用于接收远程对象死亡通知的回调。

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

Y
yangguangzhao 已提交
2746
**参数:**
W
wangqinxiao 已提交
2747 2748

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
2749
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
2750 2751
  | recipient | [DeathRecipient](#deathrecipient) | 是 | 要注销的回调。 |
  | flags | number | 是 | 死亡通知标志。 |
Z
zengyawen 已提交
2752

Y
yangguangzhao 已提交
2753
**返回值:**
W
wangqinxiao 已提交
2754 2755

  | 类型 | 说明 |
Z
zengyawen 已提交
2756
  | -------- | -------- |
Y
yangguangzhao 已提交
2757
  | boolean | 如果回调成功注销,则返回true;否则返回false。 |
Z
zengyawen 已提交
2758 2759 2760 2761 2762 2763 2764 2765


### getInterfaceDescriptor

getInterfaceDescriptor(): string

获取对象的接口描述符。接口描述符为字符串。

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

Y
yangguangzhao 已提交
2768
**返回值:**
W
wangqinxiao 已提交
2769 2770

  | 类型 | 说明 |
Z
zengyawen 已提交
2771
  | -------- | -------- |
Y
yangguangzhao 已提交
2772
  | string | 返回接口描述符。 |
Z
zengyawen 已提交
2773 2774 2775 2776 2777 2778 2779 2780


### isObjectDead

isObjectDead(): boolean

检查当前对象是否死亡。

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

Y
yangguangzhao 已提交
2783
**返回值:**
W
wangqinxiao 已提交
2784 2785

  | 类型 | 说明 |
Z
zengyawen 已提交
2786
  | -------- | -------- |
Y
yangguangzhao 已提交
2787
  | boolean | 如果对象已死亡,则返回true;否则返回false。 |
Z
zengyawen 已提交
2788 2789 2790 2791 2792 2793


## RemoteProxy

实现IRemoteObject代理对象。

Y
yangguangzhao 已提交
2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805
**系统能力**:以下各项对应的系统能力均为SystemCapability.Communication.IPC.Core。

| 参数                  | 值                      | 说明                              |
| --------------------- | ----------------------- | --------------------------------- |
| PING_TRANSACTION      | 1599098439 (0x5f504e47) | 内部指令码,用于测试IPC服务正常。 |
| DUMP_TRANSACTION      | 1598311760 (0x5f444d50) | 内部指令码,获取Binder内部状态。 |
| INTERFACE_TRANSACTION | 1598968902 (0x5f4e5446) | 内部指令码,获取对端接口描述符。  |
| MIN_TRANSACTION_ID    | 1 (0x00000001)          | 最小有效指令码。                  |
| MAX_TRANSACTION_ID    | 16777215 (0x00FFFFFF)   | 最大有效指令码。                  |



Z
zengyawen 已提交
2806

Y
yangguangzhao 已提交
2807
### sendRequest<sup>(deprecated)</sup>
Z
zengyawen 已提交
2808

W
wangqinxiao 已提交
2809 2810
sendRequest(code : number, data : MessageParcel, reply : MessageParcel, options : MessageOption): boolean

Y
yangguangzhao 已提交
2811
> **说明:**
2812
> 从 API Version 8 开始废弃,建议使用[sendRequestAsync<sup>9+</sup>](#sendrequestasync9-1)替代。
Z
zengyawen 已提交
2813 2814 2815

以同步或异步方式向对端进程发送MessageParcel消息。如果为选项设置了异步模式,则期约立即兑现,reply报文里没有内容。如果为选项设置了同步模式,则期约将在sendRequest返回时兑现,回复内容在reply报文里。

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

Y
yangguangzhao 已提交
2818
**参数:**
W
wangqinxiao 已提交
2819 2820

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
2821
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
2822 2823 2824 2825
  | code | number | 是 | 本次请求调用的消息码,由通信双方确定。如果接口由IDL工具生成,则消息代码由IDL自动生成。 |
  | data | [MessageParcel](#messageparcel) | 是 | 保存待发送数据的&nbsp;MessageParcel对象。 |
  | reply | [MessageParcel](#messageparcel) | 是 | 接收应答数据的MessageParcel对象。 |
  | options | [MessageOption](#messageoption) | 是 | 本次请求的同异步模式,默认同步调用。 |
Z
zengyawen 已提交
2826

Y
yangguangzhao 已提交
2827
**返回值:**
W
wangqinxiao 已提交
2828 2829

  | 类型 | 说明 |
Z
zengyawen 已提交
2830
  | -------- | -------- |
Y
yangguangzhao 已提交
2831
  | boolean | 返回一个布尔值,true表示成功,false表示失败。|
Z
zengyawen 已提交
2832

Y
yangguangzhao 已提交
2833 2834

**示例:**
Y
yangguangzhao 已提交
2835

Z
zengyawen 已提交
2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851
  ```
  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 已提交
2852 2853
      "bundleName": "com.ohos.server",
      "abilityName": "com.ohos.server.MainAbility",
Z
zengyawen 已提交
2854 2855 2856 2857 2858 2859 2860
  };
  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");
Y
yangguangzhao 已提交
2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871
  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();
Z
zengyawen 已提交
2872 2873
  ```

2874 2875
### sendRequest<sup>8+(deprecated)</sup>

W
wangqinxiao 已提交
2876 2877
sendRequest(code : number, data : MessageParcel, reply : MessageParcel, options : MessageOption): Promise&lt;SendRequestResult&gt;

2878
> **说明:**
2879
> 从 API Version 9 开始废弃,建议使用[sendRequestAsync<sup>9+</sup>](#sendrequestasync9-1)替代。
Y
yangguangzhao 已提交
2880 2881 2882 2883 2884 2885

以同步或异步方式向对端进程发送MessageParcel消息。如果为选项设置了异步模式,则期约立即兑现,reply报文里没有内容。如果为选项设置了同步模式,则期约将在sendRequest返回时兑现,回复内容在reply报文里。

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

**参数:**
W
wangqinxiao 已提交
2886 2887

  | 参数名 | 类型 | 必填 | 说明 |
Y
yangguangzhao 已提交
2888 2889 2890 2891 2892 2893 2894
  | -------- | -------- | -------- | -------- |
  | code | number | 是 | 本次请求调用的消息码,由通信双方确定。如果接口由IDL工具生成,则消息代码由IDL自动生成。 |
  | data | [MessageParcel](#messageparcel) | 是 | 保存待发送数据的&nbsp;MessageParcel对象。 |
  | reply | [MessageParcel](#messageparcel) | 是 | 接收应答数据的MessageParcel对象。 |
  | options | [MessageOption](#messageoption) | 是 | 本次请求的同异步模式,默认同步调用。 |

**返回值:**
W
wangqinxiao 已提交
2895 2896

  | 类型 | 说明 |
Y
yangguangzhao 已提交
2897 2898 2899 2900
  | -------- | -------- |
  | Promise&lt;SendRequestResult&gt; | 返回一个期约,兑现值是sendRequestResult实例。|

**示例:**
Y
yangguangzhao 已提交
2901

Z
zengyawen 已提交
2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917
  ```
  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 已提交
2918 2919
      "bundleName": "com.ohos.server",
      "abilityName": "com.ohos.server.MainAbility",
Z
zengyawen 已提交
2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945
  };
  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();
      });
  ```

2946 2947 2948 2949 2950 2951 2952 2953 2954
### sendRequestAsync<sup>9+</sup>

sendRequestAsync(code : number, data : MessageParcel, reply : MessageParcel, options : MessageOption): Promise&lt;SendRequestResult&gt;

以同步或异步方式向对端进程发送MessageParcel消息。如果为选项设置了异步模式,则期约立即兑现,reply报文里没有内容。如果为选项设置了同步模式,则期约将在sendRequestAsync返回时兑现,回复内容在reply报文里。

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

**参数:**
W
wangqinxiao 已提交
2955 2956

  | 参数名 | 类型 | 必填 | 说明 |
2957 2958 2959 2960 2961 2962 2963
  | -------- | -------- | -------- | -------- |
  | code | number | 是 | 本次请求调用的消息码,由通信双方确定。如果接口由IDL工具生成,则消息代码由IDL自动生成。 |
  | data | [MessageParcel](#messageparcel) | 是 | 保存待发送数据的&nbsp;MessageParcel对象。 |
  | reply | [MessageParcel](#messageparcel) | 是 | 接收应答数据的MessageParcel对象。 |
  | options | [MessageOption](#messageoption) | 是 | 本次请求的同异步模式,默认同步调用。 |

**返回值:**
W
wangqinxiao 已提交
2964 2965

  | 类型 | 说明 |
2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013
  | -------- | -------- |
  | Promise&lt;SendRequestResult&gt; | 返回一个期约,兑现值是sendRequestResult实例。|

**示例:**

  ```
  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",
      "abilityName": "com.ohos.server.MainAbility",
  };
  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.sendRequestAsync(1, data, reply, option)
      .then(function(result) {
          if (result.errCode === 0) {
              console.log("sendRequestAsync got result");
              result.reply.readException();
              let msg = result.reply.readString();
              console.log("RPCTest: reply msg: " + msg);
          } else {
              console.log("RPCTest: sendRequestAsync failed, errCode: " + result.errCode);
          }
      }).catch(function(e) {
          console.log("RPCTest: sendRequestAsync got exception: " + e.message);
      }).finally (() => {
          console.log("RPCTest: sendRequestAsync ends, reclaim parcel");
          data.reclaim();
          reply.reclaim();
      });
  ```
Z
zengyawen 已提交
3014 3015 3016 3017 3018 3019 3020

### sendRequest<sup>8+</sup>

sendRequest(code: number, data: MessageParcel, reply: MessageParcel, options: MessageOption, callback: AsyncCallback&lt;SendRequestResult&gt;): void

以同步或异步方式向对端进程发送MessageParcel消息。如果为选项设置了异步模式,则立即收到回调,reply报文里没有内容。如果为选项设置了同步模式,则将在sendRequest返回时收到回调,回复内容在reply报文里。

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

Y
yangguangzhao 已提交
3023
**参数:**
W
wangqinxiao 已提交
3024 3025

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
3026
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
3027 3028 3029 3030 3031
  | code | number | 是 | 本次请求调用的消息码,由通信双方确定。如果接口由IDL工具生成,则消息代码由IDL自动生成。 |
  | data | [MessageParcel](#messageparcel) | 是 | 保存待发送数据的&nbsp;MessageParcel对象。 |
  | reply | [MessageParcel](#messageparcel) | 是 | 接收应答数据的MessageParcel对象。 |
  | options | [MessageOption](#messageoption) | 是 | 本次请求的同异步模式,默认同步调用。 |
  | callback | AsyncCallback&lt;SendRequestResult&gt; | 是 | 接收发送结果的回调。 |
Z
zengyawen 已提交
3032

Y
yangguangzhao 已提交
3033
**示例:**
Y
yangguangzhao 已提交
3034

Z
zengyawen 已提交
3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050
  ```
  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 已提交
3051 3052
      "bundleName": "com.ohos.server",
      "abilityName": "com.ohos.server.MainAbility",
Z
zengyawen 已提交
3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082
  };
  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.MessageParcel.create();
  let reply = rpc.MessageParcel.create();
  data.writeInt(1);
  data.writeString("hello");
  proxy.sendRequest(1, data, reply, option, sendRequestCallback);
  ```


### queryLocalInterface

queryLocalInterface(interface: string): IRemoteBroker

查询并获取当前接口描述符对应的本地接口对象。

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

Y
yangguangzhao 已提交
3085
**参数:**
W
wangqinxiao 已提交
3086 3087

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
3088
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
3089
  | interface | string | 是 | 需要查询的接口描述符。 |
Z
zengyawen 已提交
3090

Y
yangguangzhao 已提交
3091
**返回值:**
W
wangqinxiao 已提交
3092 3093

  | 类型 | 说明 |
Z
zengyawen 已提交
3094
  | -------- | -------- |
Y
yangguangzhao 已提交
3095
  | IRemoteBroker | 默认返回Null,标识该接口是一个代理侧接口。 |
Z
zengyawen 已提交
3096

Y
yangguangzhao 已提交
3097
**示例:**
Y
yangguangzhao 已提交
3098

Z
zengyawen 已提交
3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114
  ```
  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 已提交
3115 3116
      "bundleName":"com.ohos.server",
      "abilityName":"com.ohos.server.MainAbility",
Z
zengyawen 已提交
3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129
  };
  FA.connectAbility(want, connect);
  let broker = proxy.queryLocalInterface("testObject");
  console.log("RpcClient: queryLocalInterface is " + broker);
  ```


### addDeathRecippient

addDeathRecipient(recipient : DeathRecipient, flags : number): boolean

注册用于接收远程对象死亡通知的回调,增加proxy对象上的死亡通知。

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

Y
yangguangzhao 已提交
3132
**参数:**
W
wangqinxiao 已提交
3133 3134

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
3135
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
3136 3137
  | recipient | [DeathRecipient](#deathrecipient) | 是 | 收件人表示要注册的回调。 |
  | flags | number | 是 | 死亡通知标志。保留参数。设置为0。 |
Z
zengyawen 已提交
3138

Y
yangguangzhao 已提交
3139
**返回值:**
W
wangqinxiao 已提交
3140 3141

  | 类型 | 说明 |
Z
zengyawen 已提交
3142
  | -------- | -------- |
Y
yangguangzhao 已提交
3143
  | boolean | 如果回调注册成功,则返回true;否则返回false。 |
Z
zengyawen 已提交
3144

Y
yangguangzhao 已提交
3145
**示例:**
Y
yangguangzhao 已提交
3146

Z
zengyawen 已提交
3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162
  ```
  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 已提交
3163 3164
      "bundleName": "com.ohos.server",
      "abilityName": "com.ohos.server.MainAbility",
Z
zengyawen 已提交
3165 3166 3167 3168
  };
  FA.connectAbility(want, connect);
  class MyDeathRecipient {
      onRemoteDied() {
Y
yangguangzhao 已提交
3169
          console.log("server died");
Z
zengyawen 已提交
3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182
      }
  }
  let deathRecipient = new MyDeathRecipient();
  proxy.addDeathRecippient(deathRecipient, 0);
  ```


### removeDeathRecipient

removeDeathRecipient(recipient : DeathRecipient, flags : number): boolean

注销用于接收远程对象死亡通知的回调。

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

Y
yangguangzhao 已提交
3185
**参数:**
W
wangqinxiao 已提交
3186 3187

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
3188
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
3189 3190
  | recipient | [DeathRecipient](#deathrecipient) | 是 | 要注销的死亡回调。 |
  | flags | number | 是 | 死亡通知标志。保留参数。设置为0。 |
Z
zengyawen 已提交
3191

Y
yangguangzhao 已提交
3192
**返回值:**
W
wangqinxiao 已提交
3193 3194

  | 类型 | 说明 |
Z
zengyawen 已提交
3195
  | -------- | -------- |
Y
yangguangzhao 已提交
3196
  | boolean | 如果回调成功注销,则返回true;否则返回false。 |
Z
zengyawen 已提交
3197

Y
yangguangzhao 已提交
3198
**示例:**
Y
yangguangzhao 已提交
3199

Z
zengyawen 已提交
3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215
  ```
  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 已提交
3216 3217
      "bundleName": "com.ohos.server",
      "abilityName": "com.ohos.server.MainAbility",
Z
zengyawen 已提交
3218 3219 3220 3221
  };
  FA.connectAbility(want, connect);
  class MyDeathRecipient {
      onRemoteDied() {
Y
yangguangzhao 已提交
3222
          console.log("server died");
Z
zengyawen 已提交
3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236
      }
  }
  let deathRecipient = new MyDeathRecipient();
  proxy.addDeathRecippient(deathRecipient, 0);
  proxy.removeDeathRecipient(deathRecipient, 0);
  ```


### getInterfaceDescriptor

getInterfaceDescriptor(): string

查询当前代理对象接口的描述符。

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

Y
yangguangzhao 已提交
3239
**返回值:**
W
wangqinxiao 已提交
3240 3241

  | 类型 | 说明 |
Z
zengyawen 已提交
3242
  | -------- | -------- |
Y
yangguangzhao 已提交
3243
  | string | 当前的接口描述符。 |
Z
zengyawen 已提交
3244

Y
yangguangzhao 已提交
3245
**示例:**
Y
yangguangzhao 已提交
3246

Z
zengyawen 已提交
3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262
  ```
  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 已提交
3263 3264
      "bundleName": "com.ohos.server",
      "abilityName": "com.ohos.server.MainAbility",
Z
zengyawen 已提交
3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277
  };
  FA.connectAbility(want, connect);
  let descriptor = proxy.getInterfaceDescriptor();
  console.log("RpcClient: descriptor is " + descriptor);
  ```


### isObjectDead

isObjectDead(): boolean

指示对应的RemoteObject是否死亡。

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

Y
yangguangzhao 已提交
3280
**返回值:**
W
wangqinxiao 已提交
3281 3282

  | 类型 | 说明 |
Z
zengyawen 已提交
3283
  | -------- | -------- |
Y
yangguangzhao 已提交
3284
  | boolean | 如果对应的RemoteObject已经死亡,返回true,否则返回false。 |
Z
zengyawen 已提交
3285

Y
yangguangzhao 已提交
3286
**示例:**
Y
yangguangzhao 已提交
3287

Z
zengyawen 已提交
3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303
  ```
  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 已提交
3304 3305
      "bundleName": "com.ohos.server",
      "abilityName": "com.ohos.server.MainAbility",
Z
zengyawen 已提交
3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316
  };
  FA.connectAbility(want, connect);
  let isDead = proxy.isObjectDead();
  console.log("RpcClient: isObjectDead is " + isDead);
  ```


## MessageOption

公共消息选项(int标志,int等待时间),使用标志中指定的标志构造指定的MessageOption对象。

Y
yangguangzhao 已提交
3317
**系统能力**:以下各项对应的系统能力均为SystemCapability.Communication.IPC.Core。
Z
zengyawen 已提交
3318

Y
yangguangzhao 已提交
3319
  | 参数 | 值 | 说明 |
Z
zengyawen 已提交
3320
| -------- | -------- | -------- |
Y
yangguangzhao 已提交
3321 3322
| TF_SYNC | 0 | 同步调用。 |
| TF_ASYNC | 1 | 异步调用。 |
3323
| TF_ACCEPT_FDS | 0x10 | 指示[sendRequestAsync](#sendrequestasync9)接口可以返回文件描述符。 |
Y
yangguangzhao 已提交
3324
| TF_WAIT_TIME | 8 | 等待时间。单位秒。 |
Z
zengyawen 已提交
3325 3326 3327 3328 3329 3330 3331 3332


### constructor

constructor(syncFlags?: number, waitTime = TF_WAIT_TIME)

MessageOption构造函数。

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

Y
yangguangzhao 已提交
3335
**参数:**
W
wangqinxiao 已提交
3336 3337

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
3338
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
3339 3340
  | syncFlags | number | 否 | 同步调用或异步调用标志。默认同步调用。 |
  | waitTime | number | 否 | 调用rpc最长等待时间。默认&nbsp;TF_WAIT_TIME。 |
Z
zengyawen 已提交
3341 3342 3343 3344 3345 3346 3347 3348


### getFlags

getFlags(): number

获取同步调用或异步调用标志。

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

Y
yangguangzhao 已提交
3351
**返回值:**
W
wangqinxiao 已提交
3352 3353

  | 类型 | 说明 |
Z
zengyawen 已提交
3354
  | -------- | -------- |
Y
yangguangzhao 已提交
3355
  | number | 调用成功返回同步调用或异步调用标志。 |
Z
zengyawen 已提交
3356 3357 3358 3359 3360 3361 3362 3363


### setFlags

setFlags(flags: number): void

设置同步调用或异步调用标志。

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

Y
yangguangzhao 已提交
3366
**参数:**
W
wangqinxiao 已提交
3367 3368

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
3369
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
3370
  | flags | number | 是 | 同步调用或异步调用标志。 |
Z
zengyawen 已提交
3371 3372 3373 3374 3375 3376 3377 3378


### getWaitTime

getWaitTime(): number

获取rpc调用的最长等待时间。

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

Y
yangguangzhao 已提交
3381
**返回值:**
W
wangqinxiao 已提交
3382 3383

  | 类型 | 说明 |
Z
zengyawen 已提交
3384
  | -------- | -------- |
Y
yangguangzhao 已提交
3385
  | number | rpc最长等待时间。 |
Z
zengyawen 已提交
3386 3387 3388 3389 3390 3391 3392 3393


### setWaitTime

setWaitTime(waitTime: number): void

设置rpc调用最长等待时间。

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

Y
yangguangzhao 已提交
3396
**参数:**
W
wangqinxiao 已提交
3397 3398

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
3399
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
3400
  | waitTime | number | 是 | rpc调用最长等待时间。 |
Z
zengyawen 已提交
3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413


## IPCSkeleton

用于获取IPC上下文信息,包括获取UID和PID、获取本端和对端设备ID、检查接口调用是否在同一设备上。


### getContextObject

static getContextObject(): IRemoteObject

获取系统能力的管理者。

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

Y
yangguangzhao 已提交
3416
**返回值:**
W
wangqinxiao 已提交
3417 3418

  | 类型 | 说明 |
Z
zengyawen 已提交
3419
  | -------- | -------- |
Y
yangguangzhao 已提交
3420
  | [IRemoteObject](#iremoteobject) | 返回系统能力管理者。 |
Z
zengyawen 已提交
3421

Y
yangguangzhao 已提交
3422
**示例:**
Y
yangguangzhao 已提交
3423

Z
zengyawen 已提交
3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435
  ```
  let samgr = rpc.IPCSkeleton.getContextObject();
  console.log("RpcServer: getContextObject result: " + samgr);
  ```


### getCallingPid

static getCallingPid(): number

获取调用者的PID。此方法由RemoteObject对象在onRemoteRequest方法中调用,不在IPC上下文环境(onRemoteRequest)中调用则返回本进程的PID。

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

Y
yangguangzhao 已提交
3438
**返回值:**
W
wangqinxiao 已提交
3439 3440

  | 类型 | 说明 |
Z
zengyawen 已提交
3441
  | -------- | -------- |
Y
yangguangzhao 已提交
3442
  | number | 返回调用者的PID。 |
Z
zengyawen 已提交
3443

Y
yangguangzhao 已提交
3444
**示例:**
Y
yangguangzhao 已提交
3445

Z
zengyawen 已提交
3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462
  ```
  class Stub extends rpc.RemoteObject {
      onRemoteRequest(code, data, reply, option) {
          let callerPid = rpc.IPCSkeleton.getCallingPid();
          console.log("RpcServer: getCallingPid result: " + callerPid);
          return true;
      }
  }
  ```


### getCallingUid

static getCallingUid(): number

获取调用者的UID。此方法由RemoteObject对象在onRemoteRequest方法中调用,不在IPC上下文环境(onRemoteRequest)中调用则返回本进程的UID。

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

Y
yangguangzhao 已提交
3465
**返回值:**
W
wangqinxiao 已提交
3466 3467

  | 类型 | 说明 |
Z
zengyawen 已提交
3468
  | -------- | -------- |
Y
yangguangzhao 已提交
3469
  | number | 返回调用者的UID。 |
Z
zengyawen 已提交
3470

Y
yangguangzhao 已提交
3471
**示例:**
Y
yangguangzhao 已提交
3472

Z
zengyawen 已提交
3473 3474 3475 3476 3477 3478 3479 3480 3481 3482
  ```
  class Stub extends rpc.RemoteObject {
      onRemoteRequest(code, data, reply, option) {
          let callerUid = rpc.IPCSkeleton.getCallingUid();
          console.log("RpcServer: getCallingUid result: " + callerUid);
          return true;
      }
  }
  ```

Y
yangguangzhao 已提交
3483
### getCallingTokenId<sup>8+</sup>
Y
yangguangzhao 已提交
3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508

static getCallingTokenId(): number;

获取调用者的TokenId,用于被调用方对调用方的身份校验。

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

* 返回值

    | 类型   | 说明                  |
  | ------ | --------------------- |
  | number | 返回调用者的TokenId。 |

* 示例

  ```
  class Stub extends rpc.RemoteObject {
      onRemoteRequest(code, data, reply, option) {
          let callerTokenId = rpc.IPCSkeleton.getCallingTokenId();
          console.log("RpcServer: getCallingTokenId result: " + callerTokenId);
          return true;
      }
  }
  ```

Z
zengyawen 已提交
3509

Y
yangguangzhao 已提交
3510
### getCallingDeviceID
Z
zengyawen 已提交
3511 3512 3513 3514 3515

static getCallingDeviceID(): string

获取调用者进程所在的设备ID。

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

Y
yangguangzhao 已提交
3518
**返回值:**
W
wangqinxiao 已提交
3519 3520

  | 类型 | 说明 |
Z
zengyawen 已提交
3521
  | -------- | -------- |
Y
yangguangzhao 已提交
3522
  | string | 返回调用者进程所在的设备ID。 |
Z
zengyawen 已提交
3523

Y
yangguangzhao 已提交
3524
**示例:**
Y
yangguangzhao 已提交
3525

Z
zengyawen 已提交
3526 3527 3528
  ```
  class Stub extends rpc.RemoteObject {
      onRemoteRequest(code, data, reply, option) {
Y
yangguangzhao 已提交
3529
          let callerDeviceID = rpc.IPCSkeleton.getCallingDeviceID();
Z
zengyawen 已提交
3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542
          console.log("RpcServer: callerDeviceID is: " + callerDeviceID);
          return true;
      }
  }
  ```


### getLocalDeviceID

static getLocalDeviceID(): string

获取本端设备ID。

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

Y
yangguangzhao 已提交
3545
**返回值:**
W
wangqinxiao 已提交
3546 3547

  | 类型 | 说明 |
Z
zengyawen 已提交
3548
  | -------- | -------- |
Y
yangguangzhao 已提交
3549
  | string | 返回本地设备的ID。 |
Z
zengyawen 已提交
3550

Y
yangguangzhao 已提交
3551
**示例:**
Y
yangguangzhao 已提交
3552

Z
zengyawen 已提交
3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569
  ```
  class Stub extends rpc.RemoteObject {
      onRemoteRequest(code, data, reply, option) {
          let localDeviceID = rpc.IPCSkeleton.getLocalDeviceID();
          console.log("RpcServer: localDeviceID is: " + localDeviceID);
          return true;
      }
  }
  ```


### isLocalCalling

static isLocalCalling(): boolean

检查当前通信对端是否是本设备的进程。

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

Y
yangguangzhao 已提交
3572
**返回值:**
W
wangqinxiao 已提交
3573 3574

  | 类型 | 说明 |
Z
zengyawen 已提交
3575
  | -------- | -------- |
Y
yangguangzhao 已提交
3576
  | boolean | 如果调用是在同一设备上进行的,则返回true,否则返回false。 |
Z
zengyawen 已提交
3577

Y
yangguangzhao 已提交
3578
**示例:**
Y
yangguangzhao 已提交
3579

Z
zengyawen 已提交
3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596
  ```
  class Stub extends rpc.RemoteObject {
      onRemoteRequest(code, data, reply, option) {
          let isLocalCalling = rpc.IPCSkeleton.isLocalCalling();
          console.log("RpcServer: isLocalCalling is: " + isLocalCalling);
          return true;
      }
  }
  ```


### flushCommands

static flushCommands(object : IRemoteObject): number

将所有挂起的命令从指定的RemoteProxy刷新到相应的RemoteObject。建议在执行任何时间敏感操作之前调用此方法。

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

Y
yangguangzhao 已提交
3599
**参数:**
W
wangqinxiao 已提交
3600 3601

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
3602
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
3603
  | object | [IRemoteObject](#iremoteobject) | 是 | 指定的RemoteProxy。 |
Z
zengyawen 已提交
3604 3605


Y
yangguangzhao 已提交
3606
**返回值:**
W
wangqinxiao 已提交
3607 3608

  | 类型 | 说明 |
Z
zengyawen 已提交
3609
  | -------- | -------- |
Y
yangguangzhao 已提交
3610
  | number | 如果操作成功,返回0;如果输入对象为空或RemoteObject,或者操作失败,返回错误代码。 |
Z
zengyawen 已提交
3611

Y
yangguangzhao 已提交
3612
**示例:**
Y
yangguangzhao 已提交
3613

Z
zengyawen 已提交
3614
  ```
Y
yangguangzhao 已提交
3615 3616
  class MyDeathRecipient {
      onRemoteDied() {
Y
yangguangzhao 已提交
3617
          console.log("server died");
Y
yangguangzhao 已提交
3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634
      }
  }
  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 已提交
3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645
  let ret = rpc.IPCSkeleton.flushCommands(remoteObject);
  console.log("RpcServer: flushCommands result: " + ret);
  ```


### resetCallingIdentity

static resetCallingIdentity(): string

将远程用户的UID和PID替换为本地用户的UID和PID。它可以用于身份验证等场景。

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

Y
yangguangzhao 已提交
3648
**返回值:**
W
wangqinxiao 已提交
3649 3650

  | 类型 | 说明 |
Z
zengyawen 已提交
3651
  | -------- | -------- |
Y
yangguangzhao 已提交
3652
  | string | 返回包含远程用户的UID和PID的字符串。 |
Z
zengyawen 已提交
3653

Y
yangguangzhao 已提交
3654
**示例:**
Y
yangguangzhao 已提交
3655

Z
zengyawen 已提交
3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672
  ```
  class Stub extends rpc.RemoteObject {
      onRemoteRequest(code, data, reply, option) {
          let callingIdentity = rpc.IPCSkeleton.resetCallingIdentity();
          console.log("RpcServer: callingIdentity is: " + callingIdentity);
          return true;
      }
  }
  ```


### setCallingIdentity

static setCallingIdentity(identity : string): boolean

将UID和PID恢复为远程用户的UID和PID。它通常在使用resetCallingIdentity后调用,需要resetCallingIdentity返回的远程用户的UID和PID。

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

Y
yangguangzhao 已提交
3675
**参数:**
W
wangqinxiao 已提交
3676 3677

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
3678
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
3679
  | identity | string | 是 | 标识表示包含远程用户UID和PID的字符串。由resetCallingIdentity返回。 |
Z
zengyawen 已提交
3680

Y
yangguangzhao 已提交
3681
**返回值:**
W
wangqinxiao 已提交
3682 3683

  | 类型 | 说明 |
Z
zengyawen 已提交
3684
  | -------- | -------- |
Y
yangguangzhao 已提交
3685
  | boolean | 如果操作成功,则返回true;否则返回false。 |
Z
zengyawen 已提交
3686

Y
yangguangzhao 已提交
3687
**示例:**
Y
yangguangzhao 已提交
3688

Z
zengyawen 已提交
3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716
  ```
  class Stub extends rpc.RemoteObject {
      onRemoteRequest(code, data, reply, option) {
          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 已提交
3717 3718
**系统能力**:SystemCapability.Communication.IPC.Core

Y
yangguangzhao 已提交
3719
**参数:**
W
wangqinxiao 已提交
3720 3721

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
3722
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
3723
  | descriptor | string | 是 | 接口描述符。 |
Z
zengyawen 已提交
3724 3725


Y
yangguangzhao 已提交
3726
### sendRequest<sup>(deprecated)</sup>
Z
zengyawen 已提交
3727

W
wangqinxiao 已提交
3728 3729
sendRequest(code : number, data : MessageParcel, reply : MessageParcel, options : MessageOption): boolean

Y
yangguangzhao 已提交
3730
> **说明:**
3731
> 从 API Version 8 开始废弃,建议使用[sendRequestAsync<sup>9+</sup>](#sendrequestasync9-2)替代。
Z
zengyawen 已提交
3732 3733 3734

以同步或异步方式向对端进程发送MessageParcel消息。如果为选项设置了异步模式,则期约立即兑现,reply报文里没有内容。如果为选项设置了同步模式,则期约将在sendRequest返回时兑现,回复内容在reply报文里。

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

Y
yangguangzhao 已提交
3737
**参数:**
W
wangqinxiao 已提交
3738 3739

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
3740
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
3741 3742 3743 3744
  | code | number | 是 | 本次请求调用的消息码,由通信双方确定。如果接口由IDL工具生成,则消息代码由IDL自动生成。 |
  | data | [MessageParcel](#messageparcel) | 是 | 保存待发送数据的&nbsp;MessageParcel对象。 |
  | reply | [MessageParcel](#messageparcel) | 是 | 接收应答数据的MessageParcel对象。 |
  | options | [MessageOption](#messageoption) | 是 | 本次请求的同异步模式,默认同步调用。 |
Z
zengyawen 已提交
3745

Y
yangguangzhao 已提交
3746
**返回值:**
W
wangqinxiao 已提交
3747 3748

  | 类型 | 说明 |
Z
zengyawen 已提交
3749
  | -------- | -------- |
Y
yangguangzhao 已提交
3750
  | boolean | 返回一个布尔值,true表示成功,false表示失败。|
Z
zengyawen 已提交
3751 3752


Y
yangguangzhao 已提交
3753
**示例:**
Y
yangguangzhao 已提交
3754

Z
zengyawen 已提交
3755
  ```
Y
yangguangzhao 已提交
3756 3757
  class MyDeathRecipient {
      onRemoteDied() {
Y
yangguangzhao 已提交
3758
          console.log("server died");
Y
yangguangzhao 已提交
3759 3760
      }
  }
Z
zengyawen 已提交
3761 3762 3763 3764
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
Y
yangguangzhao 已提交
3765 3766 3767 3768 3769 3770 3771 3772 3773
      addDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      removeDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      isObjectDead(): boolean {
          return false;
      }
Z
zengyawen 已提交
3774 3775 3776 3777 3778 3779 3780
  }
  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 已提交
3781
  let ret: boolean = testRemoteObject.sendRequest(1, data, reply, option);
Y
yangguangzhao 已提交
3782 3783 3784 3785 3786 3787 3788 3789 3790 3791
  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 已提交
3792 3793 3794
  ```


3795 3796
### sendRequest<sup>8+(deprecated)</sup>

W
wangqinxiao 已提交
3797 3798
sendRequest(code : number, data : MessageParcel, reply : MessageParcel, options : MessageOption): Promise&lt;SendRequestResult&gt;

3799
> **说明:**
3800
> 从 API Version 9 开始废弃,建议使用[sendRequestAsync<sup>9+</sup>](#sendrequestasync9-2)替代。
Y
yangguangzhao 已提交
3801 3802 3803 3804 3805 3806

以同步或异步方式向对端进程发送MessageParcel消息。如果为选项设置了异步模式,则期约立即兑现,reply报文里没有内容。如果为选项设置了同步模式,则期约将在sendRequest返回时兑现,回复内容在reply报文里。

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

**参数:**
W
wangqinxiao 已提交
3807 3808

  | 参数名 | 类型 | 必填 | 说明 |
Y
yangguangzhao 已提交
3809 3810 3811 3812 3813 3814 3815
  | -------- | -------- | -------- | -------- |
  | code | number | 是 | 本次请求调用的消息码,由通信双方确定。如果接口由IDL工具生成,则消息代码由IDL自动生成。 |
  | data | [MessageParcel](#messageparcel) | 是 | 保存待发送数据的&nbsp;MessageParcel对象。 |
  | reply | [MessageParcel](#messageparcel) | 是 | 接收应答数据的MessageParcel对象。 |
  | options | [MessageOption](#messageoption) | 是 | 本次请求的同异步模式,默认同步调用。 |

**返回值:**
W
wangqinxiao 已提交
3816 3817

  | 类型 | 说明 |
Y
yangguangzhao 已提交
3818 3819 3820 3821 3822
  | -------- | -------- |
  | Promise&lt;SendRequestResult&gt; | 返回一个期约,兑现值是sendRequestResult实例。|


**示例:**
Y
yangguangzhao 已提交
3823

Z
zengyawen 已提交
3824
  ```
Y
yangguangzhao 已提交
3825 3826
  class MyDeathRecipient {
      onRemoteDied() {
Y
yangguangzhao 已提交
3827
          console.log("server died");
Y
yangguangzhao 已提交
3828 3829
      }
  }
Z
zengyawen 已提交
3830 3831 3832 3833
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
Y
yangguangzhao 已提交
3834 3835 3836 3837 3838 3839 3840 3841 3842
      addDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      removeDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      isObjectDead(): boolean {
          return false;
      }
Z
zengyawen 已提交
3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868
  }
  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();
      });
  ```

3869 3870 3871 3872 3873 3874 3875 3876 3877
### sendRequestAsync<sup>9+</sup>

sendRequestAsync(code : number, data : MessageParcel, reply : MessageParcel, options : MessageOption): Promise&lt;SendRequestResult&gt;

以同步或异步方式向对端进程发送MessageParcel消息。如果为选项设置了异步模式,则期约立即兑现,reply报文里没有内容。如果为选项设置了同步模式,则期约将在sendRequestAsync返回时兑现,回复内容在reply报文里。

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

**参数:**
W
wangqinxiao 已提交
3878 3879

  | 参数名 | 类型 | 必填 | 说明 |
3880 3881 3882 3883 3884 3885 3886
  | -------- | -------- | -------- | -------- |
  | code | number | 是 | 本次请求调用的消息码,由通信双方确定。如果接口由IDL工具生成,则消息代码由IDL自动生成。 |
  | data | [MessageParcel](#messageparcel) | 是 | 保存待发送数据的&nbsp;MessageParcel对象。 |
  | reply | [MessageParcel](#messageparcel) | 是 | 接收应答数据的MessageParcel对象。 |
  | options | [MessageOption](#messageoption) | 是 | 本次请求的同异步模式,默认同步调用。 |

**返回值:**
W
wangqinxiao 已提交
3887 3888

  | 类型 | 说明 |
3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937
  | -------- | -------- |
  | Promise&lt;SendRequestResult&gt; | 返回一个期约,兑现值是sendRequestResult实例。|

**示例:**

  ```
  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;
      }
  }
  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.sendRequestAsync(1, data, reply, option)
      .then(function(result) {
          if (result.errCode === 0) {
              console.log("sendRequestAsync got result");
              result.reply.readException();
              let msg = result.reply.readString();
              console.log("RPCTest: reply msg: " + msg);
          } else {
              console.log("RPCTest: sendRequestAsync failed, errCode: " + result.errCode);
          }
      }).catch(function(e) {
          console.log("RPCTest: sendRequestAsync got exception: " + e.message);
      }).finally (() => {
          console.log("RPCTest: sendRequestAsync ends, reclaim parcel");
          data.reclaim();
          reply.reclaim();
      });
  ```
Z
zengyawen 已提交
3938 3939 3940 3941 3942 3943 3944

### sendRequest<sup>8+</sup>

sendRequest(code: number, data: MessageParcel, reply: MessageParcel, options: MessageOption, callback: AsyncCallback&lt;SendRequestResult&gt;): void

以同步或异步方式向对端进程发送MessageParcel消息。如果为选项设置了异步模式,则立即收到回调,reply报文里没有内容。如果为选项设置了同步模式,则将在sendRequest返回时收到回调,回复内容在reply报文里。

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

Y
yangguangzhao 已提交
3947
**参数:**
W
wangqinxiao 已提交
3948 3949

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
3950
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
3951 3952 3953 3954 3955
  | code | number | 是 | 本次请求调用的消息码,由通信双方确定。如果接口由IDL工具生成,则消息代码由IDL自动生成。 |
  | data | [MessageParcel](#messageparcel) | 是 | 保存待发送数据的&nbsp;MessageParcel对象。 |
  | reply | [MessageParcel](#messageparcel) | 是 | 接收应答数据的MessageParcel对象。 |
  | options | [MessageOption](#messageoption) | 是 | 本次请求的同异步模式,默认同步调用。 |
  | AsyncCallback | AsyncCallback&lt;SendRequestResult&gt; | 是 | 接收发送结果的回调。 |
Z
zengyawen 已提交
3956 3957


Y
yangguangzhao 已提交
3958
**示例:**
Y
yangguangzhao 已提交
3959

Z
zengyawen 已提交
3960
  ```
Y
yangguangzhao 已提交
3961 3962
  class MyDeathRecipient {
      onRemoteDied() {
Y
yangguangzhao 已提交
3963
          console.log("server died");
Y
yangguangzhao 已提交
3964 3965
      }
  }
Z
zengyawen 已提交
3966 3967 3968 3969
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
Y
yangguangzhao 已提交
3970 3971 3972 3973 3974 3975 3976 3977 3978
      addDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      removeDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      isObjectDead(): boolean {
          return false;
      }
Z
zengyawen 已提交
3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002
  }
  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 已提交
4003
### onRemoteRequest<sup>8+(deprecated)</sup>
4004

Z
zengyawen 已提交
4005 4006

onRemoteRequest(code : number, data : MessageParcel, reply: MessageParcel, options : MessageOption): boolean
W
wangqinxiao 已提交
4007

4008
> **说明:**
4009
> 从 API Version 9 开始废弃,建议使用[onRemoteRequestEx<sup>9+</sup>](#onremoterequestex9)替代。
Z
zengyawen 已提交
4010

4011
sendRequestAsync请求的响应处理函数,服务端在该函数里处理请求,回复结果。
Z
zengyawen 已提交
4012

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

Y
yangguangzhao 已提交
4015
**参数:**
W
wangqinxiao 已提交
4016 4017

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
4018
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
4019 4020 4021 4022
  | code | number | 是 | 对端发送的服务请求码。 |
  | data | [MessageParcel](#messageparcel) | 是 | 携带客户端调用参数的MessageParcel对象。 |
  | reply | [MessageParcel](#messageparcel) | 是 | 写入结果的MessageParcel对象。 |
  | option | [MessageOption](#messageoption) | 是 | 指示操作是同步还是异步。 |
Z
zengyawen 已提交
4023

Y
yangguangzhao 已提交
4024
**返回值:**
W
wangqinxiao 已提交
4025 4026

  | 类型 | 说明 |
Z
zengyawen 已提交
4027
  | -------- | -------- |
Y
yangguangzhao 已提交
4028
  | boolean | 如果操作成功,则返回true;否则返回false。 |
Z
zengyawen 已提交
4029 4030


Y
yangguangzhao 已提交
4031
**示例:**
Y
yangguangzhao 已提交
4032

4033
  ```ets
Y
yangguangzhao 已提交
4034 4035
  class MyDeathRecipient {
      onRemoteDied() {
Y
yangguangzhao 已提交
4036
          console.log("server died");
Y
yangguangzhao 已提交
4037 4038
      }
  }
Z
zengyawen 已提交
4039 4040 4041 4042
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
Y
yangguangzhao 已提交
4043 4044 4045 4046 4047 4048 4049 4050 4051
      addDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      removeDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      isObjectDead(): boolean {
          return false;
      }
Y
yangguangzhao 已提交
4052

Z
zengyawen 已提交
4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063
      onRemoteRequest(code, data, reply, option) {
          if (code === 1) {
              console.log("RpcServer: onRemoteRequest called");
              return true;
          } else {
              console.log("RpcServer: unknown code: " + code);
              return false;
          }
      }
  }
  ```
C
chenyuyan 已提交
4064 4065 4066 4067
### onRemoteRequestEx<sup>9+</sup>

onRemoteRequestEx(code : number, data : MessageParcel, reply: MessageParcel, options : MessageOption): boolean | Promise <boolean>

4068 4069 4070 4071
> **说明:**
>- 开发者应优先选择重载onRemoteRequestEx方法,其中可以自由实现同步和异步的消息处理。
>- 开发者同时重载onRemoteRequest和onRemoteRequestEx方法时,仅onRemoteRequestEx方法生效。

C
chenyuyan 已提交
4072 4073 4074 4075 4076
sendRequestAsync请求的响应处理函数,服务端在该函数里同步或异步地处理请求,回复结果。

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

**参数:**
4077

4078
  | 参数名 | 类型 | 必填 | 说明 |
C
chenyuyan 已提交
4079 4080 4081 4082 4083 4084 4085
  | -------- | -------- | -------- | -------- |
  | code | number | 是 | 对端发送的服务请求码。 |
  | data | [MessageParcel](#messageparcel) | 是 | 携带客户端调用参数的MessageParcel对象。 |
  | reply | [MessageParcel](#messageparcel) | 是 | 写入结果的MessageParcel对象。 |
  | option | [MessageOption](#messageoption) | 是 | 指示操作是同步还是异步。 |

**返回值:**
Z
zengyawen 已提交
4086

4087
  | 类型 | 说明 |
C
chenyuyan 已提交
4088 4089
  | -------- | -------- |
  | boolean | 若在onRemoteRequestEx中同步地处理请求,则返回一个布尔值:操作成功,则返回true;否则返回false。 |
4090
  | Promise <boolean> | 若在onRemoteRequestEx中异步地处理请求,则返回一个Promise对象。 |
C
chenyuyan 已提交
4091

Z
zengyawen 已提交
4092

4093
**重载onRemoteRequestEx方法同步处理请求示例:**
Z
zengyawen 已提交
4094

4095
  ```ets
C
chenyuyan 已提交
4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122
  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;
      }
      onRemoteRequestEx(code, data, reply, option) {
          if (code === 1) {
              console.log("RpcServer: sync onRemoteRequestEx is called");
              return true;
          } else {
              console.log("RpcServer: unknown code: " + code);
              return false;
          }
      }
4123 4124
  }
  ```
4125
  **重载onRemoteRequestEx方法异步处理请求示例:**
Z
zengyawen 已提交
4126

4127
  ```ets
4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145
  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;
      }
C
chenyuyan 已提交
4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159
      async onRemoteRequestEx(code, data, reply, option) {
          if (code === 1) {
              console.log("RpcServer: async onRemoteRequestEx is called");
          } else {
              console.log("RpcServer: unknown code: " + code);
              return false;
          }
          await new Promise((resolve) => {
            setTimeout(resolve, 100);
          })
          return true;
      }
  }
  ```
4160
**同时重载onRemoteRequestEx和onRemoteRequest方法同步处理请求示例:**
4161

4162
  ```ets
4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202
  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: sync onRemoteRequestEx is called");
              return true;
          } else {
              console.log("RpcServer: unknown code: " + code);
              return false;
          }
      }
      // 同时调用仅会执行onRemoteRequestEx
      onRemoteRequestEx(code, data, reply, option) {
          if (code === 1) {
              console.log("RpcServer: async onRemoteRequestEx is called");
          } else {
              console.log("RpcServer: unknown code: " + code);
              return false;
          }
          
          return true;
      }
  }
  ```
4203
  **同时重载onRemoteRequestEx和onRemoteRequest方法异步处理请求示例:**
Z
zengyawen 已提交
4204

4205
  ```ets
4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247
  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: sync onRemoteRequestEx is called");
              return true;
          } else {
              console.log("RpcServer: unknown code: " + code);
              return false;
          }
      }
      // 同时调用仅会执行onRemoteRequestEx
      async onRemoteRequestEx(code, data, reply, option) {
          if (code === 1) {
              console.log("RpcServer: async onRemoteRequestEx is called");
          } else {
              console.log("RpcServer: unknown code: " + code);
              return false;
          }
          await new Promise((resolve) => {
            setTimeout(resolve, 100);
          })
          return true;
      }
  }
  ```
Z
zengyawen 已提交
4248 4249 4250 4251 4252 4253
### getCallingUid

getCallingUid(): number

获取通信对端的进程Uid。

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

Y
yangguangzhao 已提交
4256
**返回值:**
W
wangqinxiao 已提交
4257 4258

  | 类型 | 说明 |
Z
zengyawen 已提交
4259
  | -------- | -------- |
Y
yangguangzhao 已提交
4260
  | number | 返回通信对端的进程Uid。 |
Z
zengyawen 已提交
4261 4262


Y
yangguangzhao 已提交
4263
**示例:**
Y
yangguangzhao 已提交
4264

Z
zengyawen 已提交
4265
  ```
Y
yangguangzhao 已提交
4266 4267
  class MyDeathRecipient {
      onRemoteDied() {
Y
yangguangzhao 已提交
4268
          console.log("server died");
Y
yangguangzhao 已提交
4269 4270
      }
  }
Z
zengyawen 已提交
4271 4272 4273 4274
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
Y
yangguangzhao 已提交
4275 4276 4277 4278 4279 4280 4281 4282 4283
      addDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      removeDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      isObjectDead(): boolean {
          return false;
      }
Z
zengyawen 已提交
4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295
  }
  let testRemoteObject = new TestRemoteObject("testObject");
  console.log("RpcServer: getCallingUid: " + testRemoteObject.getCallingUid());
  ```


### getCallingPid

getCallingPid(): number

获取通信对端的进程Pid。

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

Y
yangguangzhao 已提交
4298
**返回值:**
W
wangqinxiao 已提交
4299 4300

  | 类型 | 说明 |
Z
zengyawen 已提交
4301
  | -------- | -------- |
Y
yangguangzhao 已提交
4302
  | number | 返回通信对端的进程Pid。 |
Z
zengyawen 已提交
4303 4304


Y
yangguangzhao 已提交
4305
**示例:**
Y
yangguangzhao 已提交
4306

Z
zengyawen 已提交
4307
  ```
Y
yangguangzhao 已提交
4308 4309
  class MyDeathRecipient {
      onRemoteDied() {
Y
yangguangzhao 已提交
4310
          console.log("server died");
Y
yangguangzhao 已提交
4311 4312
      }
  }
Z
zengyawen 已提交
4313 4314 4315 4316
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
Y
yangguangzhao 已提交
4317 4318 4319 4320 4321 4322 4323 4324 4325
      addDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      removeDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      isObjectDead(): boolean {
          return false;
      }
Z
zengyawen 已提交
4326 4327 4328 4329 4330 4331 4332 4333
  }
  let testRemoteObject = new TestRemoteObject("testObject");
  console.log("RpcServer: getCallingPid: " + testRemoteObject.getCallingPid());
  ```


### queryLocalInterface

Y
yangguangzhao 已提交
4334
queryLocalInterface(descriptor: string): IRemoteBroker
Z
zengyawen 已提交
4335 4336 4337

查询并获取当前接口描述符对应的远端对象是否已经存在。

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

Y
yangguangzhao 已提交
4340
**参数:**
W
wangqinxiao 已提交
4341 4342

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
4343
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
4344
  | descriptor | string | 是 | 需要查询的接口描述符。 |
Z
zengyawen 已提交
4345

Y
yangguangzhao 已提交
4346
**返回值:**
W
wangqinxiao 已提交
4347 4348

  | 类型 | 说明 |
Z
zengyawen 已提交
4349
  | -------- | -------- |
Y
yangguangzhao 已提交
4350
  | IRemoteBroker | 如果接口描述符对应的远端对象存在,则返回该远端对象,否则返回Null。 |
Z
zengyawen 已提交
4351 4352


Y
yangguangzhao 已提交
4353
**示例:**
Y
yangguangzhao 已提交
4354

Z
zengyawen 已提交
4355
  ```
Y
yangguangzhao 已提交
4356 4357
  class MyDeathRecipient {
      onRemoteDied() {
Y
yangguangzhao 已提交
4358
          console.log("server died");
Y
yangguangzhao 已提交
4359 4360
      }
  }
Z
zengyawen 已提交
4361 4362 4363 4364
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
Y
yangguangzhao 已提交
4365 4366 4367 4368 4369 4370 4371 4372 4373
      addDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      removeDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      isObjectDead(): boolean {
          return false;
      }
Z
zengyawen 已提交
4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385
  }
  let testRemoteObject = new TestRemoteObject("testObject");
  let broker = testRemoteObject.queryLocalInterface("testObject");
  ```


### getInterfaceDescriptor

getInterfaceDescriptor(): string

查询接口描述符。

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

Y
yangguangzhao 已提交
4388
**返回值:**
W
wangqinxiao 已提交
4389 4390

  | 类型 | 说明 |
Z
zengyawen 已提交
4391
  | -------- | -------- |
Y
yangguangzhao 已提交
4392
  | string | 返回接口描述符。 |
Z
zengyawen 已提交
4393 4394


Y
yangguangzhao 已提交
4395
**示例:**
Y
yangguangzhao 已提交
4396

Z
zengyawen 已提交
4397
  ```
Y
yangguangzhao 已提交
4398 4399
  class MyDeathRecipient {
      onRemoteDied() {
Y
yangguangzhao 已提交
4400
          console.log("server died");
Y
yangguangzhao 已提交
4401 4402
      }
  }
Z
zengyawen 已提交
4403 4404 4405 4406
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
      }
Y
yangguangzhao 已提交
4407 4408 4409 4410 4411 4412 4413 4414 4415
      addDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      removeDeathRecipient(recipient: MyDeathRecipient, flags: number): boolean {
          return true;
      }
      isObjectDead(): boolean {
          return false;
      }
Z
zengyawen 已提交
4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428
  }
  let testRemoteObject = new TestRemoteObject("testObject");
  let descriptor = testRemoteObject.getInterfaceDescriptor();
  console.log("RpcServer: descriptor is: " + descriptor);
  ```


### attachLocalInterface

attachLocalInterface(localInterface: IRemoteBroker, descriptor: string): void

此接口用于把接口描述符和IRemoteBroker对象绑定。

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

Y
yangguangzhao 已提交
4431
**参数:**
W
wangqinxiao 已提交
4432 4433

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
4434
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
4435 4436
  | localInterface | IRemoteBroker | 是 | 将与描述符绑定的IRemoteBroker对象。 |
  | descriptor | string | 是 | 用于与IRemoteBroker对象绑定的描述符。 |
Z
zengyawen 已提交
4437 4438


Y
yangguangzhao 已提交
4439
**示例:**
Y
yangguangzhao 已提交
4440

Z
zengyawen 已提交
4441
  ```
Y
yangguangzhao 已提交
4442 4443
  class MyDeathRecipient {
      onRemoteDied() {
Y
yangguangzhao 已提交
4444
          console.log("server died");
Y
yangguangzhao 已提交
4445 4446
      }
  }
Z
zengyawen 已提交
4447 4448 4449 4450 4451
  class TestRemoteObject extends rpc.RemoteObject {
      constructor(descriptor) {
          super(descriptor);
          this.attachLocalInterface(this, descriptor);
      }
Y
yangguangzhao 已提交
4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463
      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 已提交
4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474
  }
  let testRemoteObject = new TestRemoteObject("testObject");
  ```


## Ashmem<sup>8+</sup>

提供与匿名共享内存对象相关的方法,包括创建、关闭、映射和取消映射Ashmem、从Ashmem读取数据和写入数据、获取Ashmem大小、设置Ashmem保护。

映射内存保护类型:

Y
yangguangzhao 已提交
4475 4476 4477
**系统能力**:以下各项对应的系统能力均为SystemCapability.Communication.IPC.Core。

  | 参数名 | 值 | 说明 |
Z
zengyawen 已提交
4478
| -------- | -------- | -------- |
Y
yangguangzhao 已提交
4479 4480 4481 4482
| PROT_EXEC | 4 | 映射的内存可执行 |
| PROT_NONE | 0 | 映射的内存不可访问 |
| PROT_READ | 1 | 映射的内存可读 |
| PROT_WRITE | 2 | 映射的内存可写 |
Z
zengyawen 已提交
4483 4484


Y
yangguangzhao 已提交
4485
### createAshmem<sup>8+</sup>
Z
zengyawen 已提交
4486 4487 4488 4489 4490

static createAshmem(name: string, size: number): Ashmem

根据指定的名称和大小创建Ashmem对象。

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

Y
yangguangzhao 已提交
4493
**参数:**
W
wangqinxiao 已提交
4494 4495

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
4496
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
4497 4498
  | name | string | 是 | 名称,用于查询Ashmem信息。 |
  | size | number | 是 | Ashmem的大小,以字节为单位。 |
Z
zengyawen 已提交
4499

Y
yangguangzhao 已提交
4500
**返回值:**
W
wangqinxiao 已提交
4501 4502

  | 类型 | 说明 |
Z
zengyawen 已提交
4503
  | -------- | -------- |
Y
yangguangzhao 已提交
4504
  | Ashmem | 返回创建的Ashmem对象;如果创建失败,返回null。 |
Z
zengyawen 已提交
4505 4506


Y
yangguangzhao 已提交
4507
**示例:**
Y
yangguangzhao 已提交
4508

Z
zengyawen 已提交
4509 4510 4511 4512 4513 4514 4515
  ```
  let ashmem = rpc.Ashmem.createAshmem("ashmem", 1024*1024);
  let size = ashmem.getAshmemSize();
  console.log("RpcTest: get ashemm by createAshmem : " + ashmem + " size is : " + size);
  ```


Y
yangguangzhao 已提交
4516
### createAshmemFromExisting<sup>8+</sup>
Z
zengyawen 已提交
4517 4518 4519 4520 4521

static createAshmemFromExisting(ashmem: Ashmem): Ashmem

通过复制现有Ashmem对象的文件描述符(fd)来创建Ashmem对象。两个Ashmem对象指向同一个共享内存区域。

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

Y
yangguangzhao 已提交
4524
**参数:**
W
wangqinxiao 已提交
4525 4526

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
4527
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
4528
  | ashmem | Ashmem | 是 | 已存在的Ashmem对象。 |
Z
zengyawen 已提交
4529

Y
yangguangzhao 已提交
4530
**返回值:**
W
wangqinxiao 已提交
4531 4532

  | 类型 | 说明 |
Z
zengyawen 已提交
4533
  | -------- | -------- |
Y
yangguangzhao 已提交
4534
  | Ashmem | 返回创建的Ashmem对象。 |
Z
zengyawen 已提交
4535 4536


Y
yangguangzhao 已提交
4537
**示例:**
Y
yangguangzhao 已提交
4538

Z
zengyawen 已提交
4539 4540 4541 4542 4543 4544 4545 4546
  ```
  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 已提交
4547
### closeAshmem<sup>8+</sup>
Z
zengyawen 已提交
4548 4549 4550 4551 4552

closeAshmem(): void

关闭这个Ashmem。

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

Y
yangguangzhao 已提交
4555
**示例:**
Y
yangguangzhao 已提交
4556

Z
zengyawen 已提交
4557 4558 4559 4560 4561 4562
  ```
  let ashmem = rpc.Ashmem.createAshmem("ashmem", 1024*1024);
  ashmem.closeAshmem();
  ```


Y
yangguangzhao 已提交
4563
### unmapAshmem<sup>8+</sup>
Z
zengyawen 已提交
4564 4565 4566 4567 4568

unmapAshmem(): void

删除该Ashmem对象的地址映射。

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

Y
yangguangzhao 已提交
4571
**示例:**
Y
yangguangzhao 已提交
4572

Z
zengyawen 已提交
4573 4574 4575 4576 4577 4578
  ```
  let ashmem = rpc.Ashmem.createAshmem("ashmem", 1024*1024);
  ashmem.unmapAshmem();
  ```


Y
yangguangzhao 已提交
4579
### getAshmemSize<sup>8+</sup>
Z
zengyawen 已提交
4580 4581 4582 4583 4584

getAshmemSize(): number

获取Ashmem对象的内存大小。

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

Y
yangguangzhao 已提交
4587
**返回值:**
W
wangqinxiao 已提交
4588 4589

  | 类型 | 说明 |
Z
zengyawen 已提交
4590
  | -------- | -------- |
Y
yangguangzhao 已提交
4591
  | number | 返回Ashmem对象的内存大小。 |
Z
zengyawen 已提交
4592

Y
yangguangzhao 已提交
4593
**示例:**
Y
yangguangzhao 已提交
4594

Z
zengyawen 已提交
4595 4596 4597 4598 4599 4600 4601
  ```
  let ashmem = rpc.Ashmem.createAshmem("ashmem", 1024*1024);
  let size = ashmem.getAshmemSize();
  console.log("RpcTest: get ashmem is " + ashmem + " size is : " + size);
  ```


Y
yangguangzhao 已提交
4602
### mapAshmem<sup>8+</sup>
Z
zengyawen 已提交
4603 4604 4605 4606 4607

mapAshmem(mapType: number): boolean

在此进程的虚拟地址空间上创建共享文件映射,映射区域大小由此Ashmem对象指定。

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

Y
yangguangzhao 已提交
4610
**参数:**
W
wangqinxiao 已提交
4611 4612

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
4613
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
4614
  | mapType | number | 是 | 指定映射的内存区域的保护等级。 |
Z
zengyawen 已提交
4615

Y
yangguangzhao 已提交
4616
**返回值:**
W
wangqinxiao 已提交
4617 4618

  | 类型 | 说明 |
Z
zengyawen 已提交
4619
  | -------- | -------- |
Y
yangguangzhao 已提交
4620
  | boolean | 如果映射成功,则返回true;否则返回false。 |
Z
zengyawen 已提交
4621

Y
yangguangzhao 已提交
4622
**示例:**
Y
yangguangzhao 已提交
4623

Z
zengyawen 已提交
4624 4625
  ```
  let ashmem = rpc.Ashmem.createAshmem("ashmem", 1024*1024);
Y
yangguangzhao 已提交
4626
  let mapReadAndWrite = ashmem.mapAshmem(ashmem.PROT_READ | ashmem.PROT_WRITE);
Z
zengyawen 已提交
4627 4628 4629 4630
  console.log("RpcTest: map ashmem result is  : " + mapReadAndWrite);
  ```


Y
yangguangzhao 已提交
4631
### mapReadAndWriteAshmem<sup>8+</sup>
Z
zengyawen 已提交
4632 4633 4634 4635 4636

mapReadAndWriteAshmem(): boolean

在此进程虚拟地址空间上创建可读写的共享文件映射。

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

Y
yangguangzhao 已提交
4639
**返回值:**
W
wangqinxiao 已提交
4640 4641

  | 类型 | 说明 |
Z
zengyawen 已提交
4642
  | -------- | -------- |
Y
yangguangzhao 已提交
4643
  | boolean | 如果映射成功,则返回true;否则返回false。 |
Z
zengyawen 已提交
4644

Y
yangguangzhao 已提交
4645
**示例:**
Y
yangguangzhao 已提交
4646

Z
zengyawen 已提交
4647 4648 4649 4650 4651 4652 4653
  ```
  let ashmem = rpc.Ashmem.createAshmem("ashmem", 1024*1024);
  let mapResult = ashmem.mapReadAndWriteAshmem();
  console.log("RpcTest: map ashmem result is  : " + mapResult);
  ```


Y
yangguangzhao 已提交
4654
### mapReadOnlyAshmem<sup>8+</sup>
Z
zengyawen 已提交
4655 4656 4657 4658 4659

mapReadOnlyAshmem(): boolean

在此进程虚拟地址空间上创建只读的共享文件映射。

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

Y
yangguangzhao 已提交
4662
**返回值:**
W
wangqinxiao 已提交
4663 4664

  | 类型 | 说明 |
Z
zengyawen 已提交
4665
  | -------- | -------- |
Y
yangguangzhao 已提交
4666
  | boolean | 如果映射成功,则返回true;否则返回false。 |
Z
zengyawen 已提交
4667

Y
yangguangzhao 已提交
4668
**示例:**
Y
yangguangzhao 已提交
4669

Z
zengyawen 已提交
4670 4671 4672 4673 4674 4675 4676
  ```
  let ashmem = rpc.Ashmem.createAshmem("ashmem", 1024*1024);
  let mapResult = ashmem.mapReadOnlyAshmem();
  console.log("RpcTest: Ashmem mapReadOnlyAshmem result is : " + mapResult);
  ```


Y
yangguangzhao 已提交
4677
### setProtection<sup>8+</sup>
Z
zengyawen 已提交
4678 4679 4680 4681 4682

setProtection(protectionType: number): boolean

设置映射内存区域的保护等级。

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

Y
yangguangzhao 已提交
4685
**参数:**
W
wangqinxiao 已提交
4686 4687

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
4688
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
4689
  | protectionType | number | 是 | 要设置的保护类型。 |
Z
zengyawen 已提交
4690

Y
yangguangzhao 已提交
4691
**返回值:**
W
wangqinxiao 已提交
4692 4693

  | 类型 | 说明 |
Z
zengyawen 已提交
4694
  | -------- | -------- |
Y
yangguangzhao 已提交
4695
  | boolean | 如果设置成功,则返回true;否则返回false。 |
Z
zengyawen 已提交
4696

Y
yangguangzhao 已提交
4697
**示例:**
Y
yangguangzhao 已提交
4698

Z
zengyawen 已提交
4699 4700
  ```
  let ashmem = rpc.Ashmem.createAshmem("ashmem", 1024*1024);
Y
yangguangzhao 已提交
4701
  let result = ashmem.setProtection(ashmem.PROT_READ);
Z
zengyawen 已提交
4702 4703 4704 4705
  console.log("RpcTest: Ashmem setProtection result is : " + result);
  ```


Y
yangguangzhao 已提交
4706
### writeToAshmem<sup>8+</sup>
Z
zengyawen 已提交
4707 4708 4709 4710 4711

writeToAshmem(buf: number[], size: number, offset: number): boolean

将数据写入此Ashmem对象关联的共享文件。

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

Y
yangguangzhao 已提交
4714
**参数:**
W
wangqinxiao 已提交
4715 4716

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
4717
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
4718 4719 4720
  | buf | number[] | 是 | 写入Ashmem对象的数据。 |
  | size | number | 是 | 要写入的数据大小。 |
  | offset | number | 是 | 要写入的数据在此Ashmem对象关联的内存区间的起始位置 |
Z
zengyawen 已提交
4721

Y
yangguangzhao 已提交
4722
**返回值:**
W
wangqinxiao 已提交
4723 4724

  | 类型 | 说明 |
Z
zengyawen 已提交
4725
  | -------- | -------- |
Y
yangguangzhao 已提交
4726
  | boolean | 如果数据写入成功,则返回true;在其他情况下,如数据写入越界或未获得写入权限,则返回false。 |
Z
zengyawen 已提交
4727

Y
yangguangzhao 已提交
4728
**示例:**
Y
yangguangzhao 已提交
4729

Z
zengyawen 已提交
4730 4731
  ```
  let ashmem = rpc.Ashmem.createAshmem("ashmem", 1024*1024);
Y
yangguangzhao 已提交
4732 4733
  let mapResult = ashmem.mapReadAndWriteAshmem();
  console.info("RpcTest map ashmem result is " + mapResult);
Y
yangguangzhao 已提交
4734
  var ByteArrayVar = [1, 2, 3, 4, 5];
Z
zengyawen 已提交
4735 4736 4737 4738 4739
  let writeResult = ashmem.writeToAshmem(ByteArrayVar, 5, 0);
  console.log("RpcTest: write to Ashmem result is  : " + writeResult);
  ```


Y
yangguangzhao 已提交
4740
### readFromAshmem<sup>8+</sup>
Z
zengyawen 已提交
4741 4742 4743 4744 4745

readFromAshmem(size: number, offset: number): number[]

从此Ashmem对象关联的共享文件中读取数据。

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

Y
yangguangzhao 已提交
4748
**参数:**
W
wangqinxiao 已提交
4749 4750

  | 参数名 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
4751
  | -------- | -------- | -------- | -------- |
Y
yangguangzhao 已提交
4752 4753
  | size | number | 是 | 要读取的数据的大小。 |
  | offset | number | 是 | 要读取的数据在此Ashmem对象关联的内存区间的起始位置 |
Z
zengyawen 已提交
4754

Y
yangguangzhao 已提交
4755
**返回值:**
W
wangqinxiao 已提交
4756 4757

  | 类型 | 说明 |
Z
zengyawen 已提交
4758
  | -------- | -------- |
Y
yangguangzhao 已提交
4759
  | number[] | 返回读取的数据。 |
Z
zengyawen 已提交
4760 4761


Y
yangguangzhao 已提交
4762
**示例:**
Y
yangguangzhao 已提交
4763

Z
zengyawen 已提交
4764 4765
  ```
  let ashmem = rpc.Ashmem.createAshmem("ashmem", 1024*1024);
Y
yangguangzhao 已提交
4766 4767
  let mapResult = ashmem.mapReadAndWriteAshmem();
  console.info("RpcTest map ashmem result is " + mapResult);
Y
yangguangzhao 已提交
4768
  var ByteArrayVar = [1, 2, 3, 4, 5];
Z
zengyawen 已提交
4769 4770 4771 4772 4773
  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);
  ```