diff options
-rw-r--r-- | aiogreen.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/aiogreen.py b/aiogreen.py index 6ad901e..007a478 100644 --- a/aiogreen.py +++ b/aiogreen.py @@ -305,15 +305,6 @@ class EventLoop(base_events.BaseEventLoop): self._thread_queue.put(handle) return handle - def call_at(self, when, callback, *args): - timer = asyncio.TimerHandle(when, callback, args, self) - heapq.heappush(self._scheduled, timer) - return timer - - def call_later(self, delay, callback, *args): - when = self.time() + delay - return self.call_at(when, callback, *args) - def run_forever(self): # Start to thread queue in run_forever() to create a greenthread linked # to the current greenthread |