Esempio n. 1
0
        public HierarchicalPathComputationServer(NetworkAddress networkAddress,
                                                 string ipAddress,
                                                 int signallingCloudListeningPort) : base(networkAddress, ipAddress, signallingCloudListeningPort)
        {
            _connectionController = new ConnectionController(networkAddress);
            Initialize(_connectionController);

            _routingController = new RoutingController(networkAddress);
            Initialize(_routingController);
        }
Esempio n. 2
0
        public override void Dispose()
        {
            base.Dispose();

            _connectionController = new ConnectionController(NetworkAddress);
            Initialize(_connectionController);

            _routingController = new RoutingController(NetworkAddress);
            Initialize(_routingController);
        }