Axi4MainReadClusterAgent constructor
- required Axi4SystemInterface sIntf,
- required Axi4BaseArChannelInterface arIntf,
- required Axi4BaseRChannelInterface rIntf,
- required Component parent,
- String name = 'axi4MainReadClusterAgent',
- int timeoutCycles = 500,
- int dropDelayCycles = 30,
- num readyFrequency = 1.0,
Constructs a new Axi4MainReadClusterAgent.
Implementation
Axi4MainReadClusterAgent({
required this.sIntf,
required this.arIntf,
required this.rIntf,
required Component parent,
String name = 'axi4MainReadClusterAgent',
this.timeoutCycles = 500,
this.dropDelayCycles = 30,
this.readyFrequency = 1.0,
}) : super(name, parent) {
reqAgent = Axi4MainRequestChannelAgent(
sIntf: sIntf,
rIntf: arIntf,
parent: parent,
timeoutCycles: timeoutCycles,
dropDelayCycles: dropDelayCycles);
dataAgent = Axi4MainDataChannelAgent(
sIntf: sIntf,
rIntf: rIntf,
parent: parent,
readyFrequency: readyFrequency);
}