NED File src/inet/linklayer/configurator/gatescheduling/common/AlwaysOpenGateScheduleConfigurator.ned
Name | Type | Description |
---|---|---|
AlwaysOpenGateScheduleConfigurator | simple module |
This module provides a trivial gate scheduling algorithm that makes all gates in the network to be open all the time. |
Source code
// // Copyright (C) 2020 OpenSim Ltd. // // SPDX-License-Identifier: LGPL-3.0-or-later // package inet.linklayer.configurator.gatescheduling.common; import inet.linklayer.configurator.gatescheduling.base.GateScheduleConfiguratorBase; import inet.linklayer.configurator.gatescheduling.contract.IGateScheduleConfigurator; // // This module provides a trivial gate scheduling algorithm that makes all gates // in the network to be open all the time. // simple AlwaysOpenGateScheduleConfigurator extends GateScheduleConfiguratorBase like IGateScheduleConfigurator { parameters: @class(AlwaysOpenGateScheduleConfigurator); }