summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJean Flach <Crunsher@users.noreply.github.com>2018-10-26 15:56:27 +0200
committerJean Flach <Crunsher@users.noreply.github.com>2018-10-26 15:57:23 +0200
commit9ff1cc7826f6d546fc0fcdd7f08554e729a447a1 (patch)
tree80b6dc8667e60773d6296065b7a7ef1ab728272d /README.md
parent970e5fa0a39693efdd89b1fc65c5472a0b7b4912 (diff)
Update README.md
Add note about using context->data to pass user data to connect and disconnect callbacks
Diffstat (limited to 'README.md')
-rw-r--r--README.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/README.md b/README.md
index 01223ea..b004746 100644
--- a/README.md
+++ b/README.md
@@ -286,6 +286,7 @@ return `REDIS_ERR`. The function to set the disconnect callback has the followin
```c
int redisAsyncSetDisconnectCallback(redisAsyncContext *ac, redisDisconnectCallback *fn);
```
+`ac->data` may be used to pass user data to this callback, the same can be done for redisConnectCallback.
### Sending commands and their callbacks
In an asynchronous context, commands are automatically pipelined due to the nature of an event loop.