You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> Your application process may continue executing after all requests are completed for the duration of the session idle timeout. To prevent this, it is recommended to call ``Client.close()`` once all requests are complete. It is not recommended to set ``http_idle_timeout`` to small values.
169
+
> Your application process may continue executing after all requests are completed for the duration of the session idle timeout. To prevent this, it is recommended to call ``close()`` once all requests are complete. It is not recommended to set ``http_idle_timeout`` to small values.
170
170
171
171
### Connect Timeout
172
172
@@ -247,12 +247,12 @@ except ServiceError as e:
247
247
248
248
## Pagination
249
249
250
-
Use the ``Client.paginate()`` method to iterate sets that contain more than one
250
+
Use the ``paginate()`` method to iterate sets that contain more than one
251
251
page of results.
252
252
253
-
``Client.paginate()`` accepts the same query options as ``Client.query()``.
253
+
``paginate()`` accepts the same query options as ``query()``.
254
254
255
-
Change the default items per page using FQL's ``<set>.pageSize()`` method.
255
+
Change the default items per page using FQL's ``pageSize()`` method.
256
256
257
257
```python
258
258
from datetime import timedelta
@@ -289,7 +289,7 @@ To get a stream token, append ``toStream()`` or ``changesOn()`` to a set from a
289
289
290
290
291
291
To start and subscribe to the stream, pass the stream token to
292
-
``Client.stream()``:
292
+
``stream()``:
293
293
294
294
```python
295
295
from fauna import fql
@@ -312,7 +312,7 @@ To start and subscribe to the stream, pass the stream token to
312
312
```
313
313
314
314
You can also pass a query that produces a stream token directly to
0 commit comments