mirror of
https://github.com/fluencelabs/redis
synced 2025-06-22 05:21:33 +00:00
new ae.c API to get current events by file descriptor.
This commit is contained in:
1
src/ae.h
1
src/ae.h
@ -104,6 +104,7 @@ void aeStop(aeEventLoop *eventLoop);
|
||||
int aeCreateFileEvent(aeEventLoop *eventLoop, int fd, int mask,
|
||||
aeFileProc *proc, void *clientData);
|
||||
void aeDeleteFileEvent(aeEventLoop *eventLoop, int fd, int mask);
|
||||
int aeGetFileEvents(aeEventLoop *eventLoop, int fd);
|
||||
long long aeCreateTimeEvent(aeEventLoop *eventLoop, long long milliseconds,
|
||||
aeTimeProc *proc, void *clientData,
|
||||
aeEventFinalizerProc *finalizerProc);
|
||||
|
Reference in New Issue
Block a user