Class HoconProcessor

    • Constructor Detail

      • HoconProcessor

        public HoconProcessor()
    • Method Detail

      • name

        public String name()
        Description copied from interface: ConfigProcessor
        Name of the processor, generally the name of the format it handles.
        Specified by:
        name in interface ConfigProcessor
        Returns:
        the name
      • process

        public Future<JsonObject> process​(Vertx vertx,
                                          JsonObject configuration,
                                          Buffer input)
        Description copied from interface: ConfigProcessor
        Transforms the given input into a JsonObject. This is an asynchronous non-blocking transformation. If the transformation fails, the passed AsyncResult would be marked as failed. On success, the result contains the JsonObject.
        Specified by:
        process in interface ConfigProcessor
        Parameters:
        vertx - the Vert.x instance
        configuration - the processor configuration, may be null
        input - the input, must not be null
        Returns:
        a future notified with the result