예제 #1
0
 def __init__(self, context, _id):
     self.context = context
     self.id = _id
     logging.debug('Socket namespace %s created', self.id)
     self.endpoints = [
         cls(self.context) for cls in SocketEndpoint.classes()
     ]
예제 #2
0
파일: worker.py 프로젝트: HasClass0/ajenti
 def __init__(self, context, _id):
     self.context = context
     self.id = _id
     logging.debug('Socket namespace %s created', self.id)
     self.endpoints = [
         cls(self.context)
         for cls in SocketEndpoint.classes()
     ]
예제 #3
0
파일: views.py 프로젝트: starnetwork/ajenti
 def __init__(self, context):
     SocketEndpoint.__init__(self, context)
     self.mgr = TerminalManager.get(self.context)
     self.readers = {}
예제 #4
0
파일: views.py 프로젝트: tawanda/ajenti
 def __init__(self, context):
     SocketEndpoint.__init__(self, context)
     self.mgr = TerminalManager.get(self.context)
     self.readers = {}
예제 #5
0
파일: push.py 프로젝트: eGeekster/ajenti
 def __init__(self, context):
     SocketEndpoint.__init__(self, context)
예제 #6
0
파일: push.py 프로젝트: Dolphi2/ajenti
 def __init__(self, context):
     SocketEndpoint.__init__(self, context)