connect method
Implementation
@override
Future<Socket> connect(SocketConnectionPoint connectionPoint) async {
Socket connection = await _connect(connectionPoint.address, connectionPoint.port);
_connection.add(connection);
return connection;
}
@override
Future<Socket> connect(SocketConnectionPoint connectionPoint) async {
Socket connection = await _connect(connectionPoint.address, connectionPoint.port);
_connection.add(connection);
return connection;
}