예제 #1
0
    def __init__(self, port, zmq_factory, data_manager):

        self.data_manager = data_manager

        endpoint = ZmqEndpoint(ZmqEndpointType.bind, "tcp://*:%d" % port)

        ZmqREPConnection.__init__(self, zmq_factory, endpoint)
예제 #2
0
    def __init__(self, port, zmq_factory, data_manager):
        
        self.data_manager = data_manager

        endpoint = ZmqEndpoint(ZmqEndpointType.bind, "tcp://*:%d" % port)

        ZmqREPConnection.__init__(self, zmq_factory, endpoint)
예제 #3
0
 def __init__(self, factory, endpoint):
     ZmqREPConnection.__init__(self, factory, endpoint=endpoint)
예제 #4
0
 def __init__(self, zf, e, core):
     ZmqREPConnection.__init__(self, zf, e)
     self.dispatcher = CommandDispatcher(core)
예제 #5
0
	def __init__(self, zmqfactory, zmqendpoint):
		ZmqREPConnection.__init__(self, zmqfactory, zmqendpoint)
예제 #6
0
 def __init__(self, zf, e, core):
     ZmqREPConnection.__init__(self, zf, e)
     self.core = core
예제 #7
0
 def __init__(self, factory, endpoint, client):
     ZmqREPConnection.__init__(self, factory, endpoint=endpoint)
     self.client = client
예제 #8
0
 def __init__(self, zf, e, core):
     ZmqREPConnection.__init__(self, zf, e)
     self.dispatcher = CommandDispatcher(core)