getNonzaHandlers method
override
Return the NonzaHandlers associated with this manager. The higher the value of the handler's priority, the earlier it is run.
Implementation
@override
List<NonzaHandler> getNonzaHandlers() => [
NonzaHandler(
nonzaTag: 'r',
nonzaXmlns: smXmlns,
callback: _handleAckRequest,
),
NonzaHandler(
nonzaTag: 'a',
nonzaXmlns: smXmlns,
callback: _handleAckResponse,
),
];