Init uploadChunk and downloadChunk in AdvancedDispatcher
This commit is contained in:
parent
5190e9c49a
commit
05779e1675
|
@ -1,7 +1,6 @@
|
||||||
"""
|
"""
|
||||||
Improved version of asyncore dispatcher
|
Improved version of asyncore dispatcher
|
||||||
"""
|
"""
|
||||||
# pylint: disable=attribute-defined-outside-init
|
|
||||||
import socket
|
import socket
|
||||||
import threading
|
import threading
|
||||||
import time
|
import time
|
||||||
|
@ -43,6 +42,7 @@ class AdvancedDispatcher(asyncore.dispatcher):
|
||||||
self.readLock = threading.RLock()
|
self.readLock = threading.RLock()
|
||||||
self.writeLock = threading.RLock()
|
self.writeLock = threading.RLock()
|
||||||
self.processingLock = threading.RLock()
|
self.processingLock = threading.RLock()
|
||||||
|
self.uploadChunk = self.downloadChunk = 0
|
||||||
|
|
||||||
def append_write_buf(self, data):
|
def append_write_buf(self, data):
|
||||||
"""Append binary data to the end of stream write buffer."""
|
"""Append binary data to the end of stream write buffer."""
|
||||||
|
|
Loading…
Reference in New Issue
Block a user