Interface DelayedDeliveryTrackerFactory

All Superinterfaces:
AutoCloseable
All Known Implementing Classes:
InMemoryDelayedDeliveryTrackerFactory

@Beta public interface DelayedDeliveryTrackerFactory extends AutoCloseable
Factory of InMemoryDelayedDeliveryTracker objects. This is the entry point for implementations. Note: this interface is still being refined and some breaking changes might be introduced.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Close the factory and release all the resources.
    void
    initialize(org.apache.pulsar.broker.ServiceConfiguration config)
    Initialize the factory implementation from the broker service configuration.
    Create a new tracker instance.
  • Method Details