modules/core/src/main/java/org/apache/fluo/recipes/core/combine/CombineQueue.java [70:91]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    } catch (Exception e) {
      throw new RuntimeException(e);
    }
  }

  /**
   * Part of a fluent API for configuring a combine queue.
   * 
   * @since 1.1.0
   */
  public static interface FluentArg1 {
    public FluentArg2 keyType(String keyType);

    public FluentArg2 keyType(Class<?> keyType);
  }

  /**
   * Part of a fluent API for configuring a combine queue.
   * 
   * @since 1.1.0
   */
  public static interface FluentArg2 {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



modules/core/src/main/java/org/apache/fluo/recipes/core/export/ExportQueue.java [99:121]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    } catch (Exception e) {
      // TODO
      throw new RuntimeException(e);
    }
  }

  /**
   * Part of a fluent API for configuring a export queue.
   *
   * @since 1.1.0
   */
  public static interface FluentArg1 {
    public FluentArg2 keyType(String keyType);

    public FluentArg2 keyType(Class<?> keyType);
  }

  /**
   * Part of a fluent API for configuring a export queue.
   *
   * @since 1.1.0
   */
  public static interface FluentArg2 {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



