deleteQueue method

  1. @override
Future<void> deleteQueue(
  1. String name
)

Deletes a message queue. If connection doesn't support this function it exists without error.

  • name the name of the queue to be deleted.

Important: This method is not supported by MQTT.

Implementation

@override
Future<void> deleteQueue(String name) async {
  // Not supported
}