Interface EventHubsProducerFactory
- All Known Implementing Classes:
DefaultEventHubsNamespaceProducerFactory
public interface EventHubsProducerFactory
The strategy to produce
EventHubProducerAsyncClient
instance.-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interface
Called whenever a producer is added or removed. -
Method Summary
Modifier and TypeMethodDescriptiondefault void
addListener
(EventHubsProducerFactory.Listener listener) Add a listener for this factory.com.azure.messaging.eventhubs.EventHubProducerAsyncClient
createProducer
(String eventHub) CreateEventHubProducerAsyncClient
to send events to the event hub.default boolean
Remove a listener
-
Method Details
-
createProducer
CreateEventHubProducerAsyncClient
to send events to the event hub.- Parameters:
eventHub
- the event hub- Returns:
- the producer.
-
addListener
Add a listener for this factory.- Parameters:
listener
- the listener
-
removeListener
Remove a listener- Parameters:
listener
- the listener- Returns:
- true if removed.
-