diff options
author | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2010-12-28 19:19:25 +0100 |
---|---|---|
committer | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2010-12-28 19:19:25 +0100 |
commit | e3776bfaa65bf40a7c43917c6985f0d83c1afd76 (patch) | |
tree | 989ddb4b32e447514c1f48870a037094977c646f /async.h | |
parent | 3d76f3fe02c8fa4eac1bb2fb266897f69f159ee8 (diff) |
Add function to explicitly free an async context
Diffstat (limited to 'async.h')
-rw-r--r-- | async.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -95,6 +95,7 @@ int redisAsyncSetReplyObjectFunctions(redisAsyncContext *ac, redisReplyObjectFun int redisAsyncSetConnectCallback(redisAsyncContext *ac, redisConnectCallback *fn); int redisAsyncSetDisconnectCallback(redisAsyncContext *ac, redisDisconnectCallback *fn); void redisAsyncDisconnect(redisAsyncContext *ac); +void redisAsyncFree(redisAsyncContext *ac); /* Handle read/write events */ void redisAsyncHandleRead(redisAsyncContext *ac); |