Loading ccserver/client.py +5 −0 Original line number Diff line number Diff line Loading @@ -8,6 +8,8 @@ Local client representation classes. from threading import Lock from datetime import datetime from sjrpc.utils import ConnectionProxy class CCClient(object): ''' Represent a single client connected to the server. Loading @@ -33,6 +35,9 @@ class CCClient(object): # The date of the last action: self._last_action = datetime.now() # The connection proxy: self.proxy = ConnectionProxy(connection) # Jobs lock for this client: self.lock = Lock() Loading Loading
ccserver/client.py +5 −0 Original line number Diff line number Diff line Loading @@ -8,6 +8,8 @@ Local client representation classes. from threading import Lock from datetime import datetime from sjrpc.utils import ConnectionProxy class CCClient(object): ''' Represent a single client connected to the server. Loading @@ -33,6 +35,9 @@ class CCClient(object): # The date of the last action: self._last_action = datetime.now() # The connection proxy: self.proxy = ConnectionProxy(connection) # Jobs lock for this client: self.lock = Lock() Loading