Lines Matching refs:participants
10 - **Participant**: all participants involved in a share, including the inviter and invitees.
16 … exiting a share, changing the privilege on the shared data, querying participants, confirming an …
942 … exiting a share, changing the privilege on the shared data, querying participants, confirming an …
946 Enumerates the roles of the participants in a device-cloud share.
982 | TOO_MANY_PARTICIPANTS | 5 | The number of device-cloud sharing participants has reached the …
1034 allocResourceAndShare(storeId: string, predicates: relationalStore.RdbPredicates, participants: Arr…
1046 | participants | Array<[Participant](#participant11)> | Yes | Participants of the share. |
1071 let participants = new Array<cloudData.sharing.Participant>();
1072 participants.push({
1088 cloudData.sharing.allocResourceAndShare('storeName', predicates, participants, ['uuid', 'data']).th…
1104 allocResourceAndShare(storeId: string, predicates: relationalStore.RdbPredicates, participants: Arr…
1116 | participants | Array<[Participant](#participant11)> | Yes | Participants of the share. |
1136 let participants = new Array<cloudData.sharing.Participant>();
1137 participants.push({
1153 cloudData.sharing.allocResourceAndShare('storeName', predicates, participants, ['uuid', 'data'], (e…
1171 allocResourceAndShare(storeId: string, predicates: relationalStore.RdbPredicates, participants: Arr…
1183 | participants | Array<[Participant](#participant11)> | Yes | Participants of the share. |
1202 let participants = new Array<cloudData.sharing.Participant>();
1203 participants.push({
1219 cloudData.sharing.allocResourceAndShare('storeName', predicates, participants, (err: BusinessError,…
1237 share(sharingResource: string, participants: Array<Participant>): Promise<Result<Array&…
1239 Shares data based on the specified shared resource ID and participants. This API uses a promise to …
1248 | participants | Array<[Participant](#participant11)> | Yes | Participants of the sha…
1271 let participants = new Array<cloudData.sharing.Participant>();
1272 participants.push({
1285 cloudData.sharing.share('sharing_resource_test', participants).then((result) => {
1295 share(sharingResource: string, participants: Array<Participant>, callback: AsyncCallback<R…
1297 Shares data based on the specified shared resource ID and participants. This API uses an asynchrono…
1306 | participants | Array<[Participant](#participant11)> | Yes | Participants of the share.…
1324 let participants = new Array<cloudData.sharing.Participant>();
1325 participants.push({
1338 cloudData.sharing.share('sharing_resource_test', participants, ((err: BusinessError, result) => {
1350 unshare(sharingResource: string, participants: Array<Participant>): Promise<Result<Arra…
1352 Unshares data based on the specified shared resource ID and participants. This API uses a promise t…
1361 | participants | Array<[Participant](#participant11)> | Yes | Participants of the share…
1384 let participants = new Array<cloudData.sharing.Participant>();
1385 participants.push({
1398 cloudData.sharing.unshare('sharing_resource_test', participants).then((result) => {
1408 unshare(sharingResource: string, participants: Array<Participant>, callback: AsyncCallback<…
1410 Unshares data based on the specified shared resource ID and participants. This API uses an asynchro…
1419 | participants | Array<[Participant](#participant11)> | Yes | Participants of the share.…
1437 let participants = new Array<cloudData.sharing.Participant>();
1438 participants.push({
1451 cloudData.sharing.unshare('sharing_resource_test', participants, ((err: BusinessError, result) => {
1546 changePrivilege(sharingResource: string, participants: Array<Participant>): Promise<Result…
1557 | participants | Array<[Participant](#participant11)> | Yes | Participants with new pr…
1580 let participants = new Array<cloudData.sharing.Participant>();
1581 participants.push({
1595 cloudData.sharing.changePrivilege('sharing_resource_test', participants).then((result) => {
1605 changePrivilege(sharingResource: string, participants: Array<Participant>, callback: AsyncCal…
1616 | participants | Array<[Participant](#participant11)> | Yes | Participants with new pri…
1634 let participants = new Array<cloudData.sharing.Participant>();
1635 participants.push({
1649 cloudData.sharing.changePrivilege('sharing_resource_test', participants, ((err: BusinessError, resu…
1663 Queries the participants of the specified shared data. This API uses a promise to return the result.
1677 …<[Participant](#participant11)>>> | Promise used to return the participants obtained. |
1695 console.info(`query participants succeeded, result: ${result}`);
1697 console.error(`query participants failed, code is ${err.code},message is ${err.message}`);
1706 Queries the participants of the specified shared data. This API uses an asynchronous callback to re…
1715 …icipant](#participant11)>>> | Yes | Callback used to return the participants obtained. |
1734 console.error(`query participants failed, code is ${err.code},message is ${err.message}`);
1737 console.info(`query participants succeeded, result: ${result}`);
1746 Queries the participants based on the sharing invitation code. This API uses a promise to return th…
1760 …y<[Participant](#participant11)>>> | Promise used to return the participants obtained.|
1778 console.info(`query participants by invitation succeeded, result: ${result}`);
1780 …console.error(`query participants by invitation failed, code is ${err.code},message is ${err.messa…
1789 Queries the participants based on the sharing invitation code. This API uses an asynchronous callba…
1798 …ticipant](#participant11)>>> | Yes | Callback used to return the participants obtained. |
1817 …console.error(`query participants by invitation failed, code is ${err.code},message is ${err.messa…
1820 console.info(`query participants by invitation succeeded, result: ${result}`);