LtiSubordinateLcChannelAgent constructor
- required Axi5SystemInterface sys,
- required LtiLcChannelInterface lc,
- required Component parent,
- String name = 'ltiSubordinateLcChannelAgent',
Constructs a new LtiSubordinateLcChannelAgent.
Implementation
LtiSubordinateLcChannelAgent({
required this.sys,
required this.lc,
required Component parent,
String name = 'ltiSubordinateLcChannelAgent',
}) : super(name, parent) {
monitor = LtiLcChannelMonitor(sys: sys, lc: lc, parent: parent);
sequencer = Sequencer<LtiCreditPacket>(
'ltiSubordinateLcChannelAgentSequencer', this);
driver = LtiCreditDriver(
parent: this,
sys: sys,
trans: lc,
sequencer: sequencer,
);
}