Skip to content
This repository was archived by the owner on Jul 12, 2021. It is now read-only.

Commit aa5e07d

Browse files
authored
Update README.md
1 parent b64f4c8 commit aa5e07d

File tree

1 file changed

+18
-4
lines changed

1 file changed

+18
-4
lines changed

README.md

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,13 @@ get operation:
5151
example:
5252

5353
```
54-
RxCar.get().idEqualTo(id)
55-
.colorEqualTo(color)
56-
.modelGreaterThan(model)
54+
RxCar.get().idEqualTo(id) //condition
55+
.colorEqualTo(color) //condition
56+
.modelGreaterThan(model) //condition
57+
.getAysnc(); //execute
5758
```
5859

59-
operations:
60+
condition operations:
6061

6162
```equalTo```
6263

@@ -78,6 +79,14 @@ operations:
7879

7980
```first```
8081

82+
execute operations:
83+
84+
```getAysnc```
85+
86+
```deleteAsync```
87+
88+
```countAsync```
89+
8190
set operation:
8291
--------
8392

@@ -89,12 +98,17 @@ example:
8998
RxCar.set(id)
9099
.setColor(pink)
91100
.setModel(y2019)
101+
.setAsync(); //execute
92102
```
93103

94104
operation:
95105

96106
```set```
97107

108+
execute operations:
109+
110+
```setAsync```
111+
98112

99113
EXAMPLE
100114
========

0 commit comments

Comments
 (0)