identifyConn method
IdentifyConn synchronously triggers an identify request on the connection and waits for it to complete. If the connection is being identified by another caller, this call will wait. If the connection has already been identified, it will return immediately.
Implementation
@override
Future<void> identifyConn(Conn conn) async {
_log.fine('IdentifyService.identifyConn: Called for peer ${conn.remotePeer}. Delegating to identifyWait.');
await identifyWait(conn);
_log.fine('IdentifyService.identifyConn: identifyWait completed for peer ${conn.remotePeer}.');
}