Enum StreamingExchangeFactory

java.lang.Object
java.lang.Enum<StreamingExchangeFactory>
info.bitrich.xchangestream.core.StreamingExchangeFactory
All Implemented Interfaces:
Serializable, Comparable<StreamingExchangeFactory>, java.lang.constant.Constable

public enum StreamingExchangeFactory extends Enum<StreamingExchangeFactory>
Factory to provide the following to StreamingExchange:
  • Manages the creation of specific Exchange implementations using runtime dependencies
  • Enum Constant Details

  • Method Details

    • values

      public static StreamingExchangeFactory[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static StreamingExchangeFactory valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • createExchangeWithoutSpecification

      public StreamingExchange createExchangeWithoutSpecification(String exchangeClassName)
      Create an Exchange object without default ExchangeSpecification

      The factory is parameterised with the name of the exchange implementation class. This must be a class extending Exchange.

      Parameters:
      exchangeClassName - the fully-qualified class name of the exchange
      Returns:
      a new exchange instance configured with the default ExchangeSpecification
    • createExchangeWithoutSpecification

      public StreamingExchange createExchangeWithoutSpecification(Class<? extends StreamingExchange> exchangeClass)
    • createExchange

      public StreamingExchange createExchange(String exchangeClassName)
      Create an Exchange object with default ExchangeSpecification

      The factory is parameterised with the name of the exchange implementation class. This must be a class extending Exchange.

      Parameters:
      exchangeClassName - the fully-qualified class name of the exchange
      Returns:
      a new exchange instance configured with the default ExchangeSpecification
    • createExchange

      public StreamingExchange createExchange(Class<? extends StreamingExchange> exchangeClass)
      Create an Exchange object with default ExchangeSpecification

      The factory is parameterised with the name of the exchange implementation class. This must be a class extending Exchange.

      Parameters:
      exchangeClass - the exchange to create
      Returns:
      a new exchange instance configured with the default ExchangeSpecification
    • createExchange

      public StreamingExchange createExchange(ExchangeSpecification exchangeSpecification)