Interface DestinationOptionsAugmenter

All Known Implementing Classes:
DestinationServiceOptionsAugmenter
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface DestinationOptionsAugmenter
Represents a class that can set specialized configuration parameters.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Use this class to set configuration parameters that are specific to a platform/environment/etc.
  • Method Details

    • augmentBuilder

      void augmentBuilder(@Nonnull DestinationOptions.Builder builder)
      Use this class to set configuration parameters that are specific to a platform/environment/etc. Once called, any parameter setting methods of this class will affect the provided DestinationOptions.Builder and the resulting DestinationOptions object that the builder creates.
      Parameters:
      builder - The builder to attach this augmenter to