9 lines
189 B
Cython
9 lines
189 B
Cython
|
|
import cython
|
|
|
|
|
|
cdef class RecordUpdateListener:
|
|
|
|
cpdef void async_update_records(self, object zc, double now, cython.list records)
|
|
|
|
cpdef void async_update_records_complete(self)
|