Interface StorageQueueClientFactory.Listener
- Enclosing interface:
- StorageQueueClientFactory
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Called whenever a
QueueAsyncClient is added or removed.-
Method Summary
Modifier and TypeMethodDescriptionvoidqueueClientAdded(String name, com.azure.storage.queue.QueueAsyncClient client) The callback method that the queue client has been added.default voidqueueClientRemoved(String name, com.azure.storage.queue.QueueAsyncClient client) The default callback method that the queue client has been removed.
-
Method Details
-
queueClientAdded
The callback method that the queue client has been added.- Parameters:
name- the name for the queue.client- the queue client.
-
queueClientRemoved
The default callback method that the queue client has been removed.- Parameters:
name- the name for the queue.client- the queue client.
-