Package reactor.convert

Examples of reactor.convert.DelegatingConverter


   *     The converters to be used by the event router
   *
   * @return {@code this}
   */
  public final SPEC converters(Converter... converters) {
    this.converter = new DelegatingConverter(converters);
    return (SPEC) this;
  }
View Full Code Here


   *     The converters to be used by the event router
   *
   * @return {@code this}
   */
  public final SPEC converters(List<Converter> converters) {
    this.converter = new DelegatingConverter(converters);
    return (SPEC) this;
  }
View Full Code Here

TOP

Related Classes of reactor.convert.DelegatingConverter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.