Beispiel #1
0
    void createElements(XmlNode configuration)
    {
        //create routing protocol
        XmlNode routingProtocolNode = XmlParser.GetChildNode(configuration, RoutingProtocol.RoutingProtocolTag);

        routingProtocol = RoutingProtocol.Create(routingProtocolNode, this);
        interfaces      = new NetworkInterfaces(this);
        //create data destination
        dataDestination = new DataDestination(this);

        //create bundle protocol instance
        XmlNode bundleProtocolNode = configuration[BundleInstance.BundleProtocolTag];

        if (bundleProtocolNode != null)
        {
            bundleInstance = new BundleInstance(bundleProtocolNode, this);
        }
        else
        {
            bundleInstance = new BundleInstance(this);
        }
        //create data source(if any requested)
        XmlNode dataSourceNode = configuration[DataSource.DataSourceTag];

        if (dataSourceNode != null)
        {
            dataSource = new DataSource(dataSourceNode, this);
        }
    }
Beispiel #2
0
//CONSTRUCTION
    public BundleBuffer(BundleInstance bundleInstance)
        : base(bundleInstance, bundleBufferTag)
    {
        this.bundleInstance = bundleInstance;
    }