@@ -22,22 +22,21 @@ cdef class RecordManager:
2222 cdef public DNSCache cache
2323 cdef public cython.set listeners
2424
25- cpdef async_updates(self , object now, object records)
25+ cpdef void async_updates(self , object now, object records)
2626
27- cpdef async_updates_complete(self , object notify)
27+ cpdef void async_updates_complete(self , bint notify)
2828
2929 @ cython.locals (
3030 cache = DNSCache,
3131 record = DNSRecord,
3232 answers = cython.list,
3333 maybe_entry = DNSRecord,
34- now_double = double
3534 )
36- cpdef async_updates_from_response(self , DNSIncoming msg)
35+ cpdef void async_updates_from_response(self , DNSIncoming msg)
3736
38- cpdef async_add_listener(self , RecordUpdateListener listener, object question)
37+ cpdef void async_add_listener(self , RecordUpdateListener listener, object question)
3938
40- cpdef async_remove_listener(self , RecordUpdateListener listener)
39+ cpdef void async_remove_listener(self , RecordUpdateListener listener)
4140
4241 @ cython.locals (question = DNSQuestion, record = DNSRecord)
43- cdef _async_update_matching_records(self , RecordUpdateListener listener, cython.list questions)
42+ cdef void _async_update_matching_records(self , RecordUpdateListener listener, cython.list questions)
0 commit comments