readQueueNames method

  1. @override
Future<List<String>> readQueueNames()

Reads a list of registered queue names. If connection doesn't support this function returnes an empty list.

Returns a list with registered queue names.

Important: This method is not supported by MQTT.

Implementation

@override
Future<List<String>> readQueueNames() async {
  /// Not supported
  return [];
}