public class HoconProcessor extends Object implements ConfigProcessor
Constructor and Description |
---|
HoconProcessor() |
Modifier and Type | Method and Description |
---|---|
String |
name()
Name of the processor, generally the name of the format it handles.
|
void |
process(Vertx vertx,
JsonObject configuration,
Buffer input,
Handler<AsyncResult<JsonObject>> handler)
Transforms the given
input into a JsonObject . |
public String name()
ConfigProcessor
name
in interface ConfigProcessor
public void process(Vertx vertx, JsonObject configuration, Buffer input, Handler<AsyncResult<JsonObject>> handler)
ConfigProcessor
input
into a JsonObject
. This is an asynchronous non-blocking
transformation. The result is passed to the given Handler
. If the transformation fails, the passed
AsyncResult
would be marked as failed. On success, the result contains the JsonObject
.process
in interface ConfigProcessor
vertx
- the Vert.x instanceconfiguration
- the processor configuration, may be null
input
- the input, must not be null
handler
- the result handler, must not be null
. The handler will be called in the same context as
the caller.Copyright © 2023 Eclipse. All rights reserved.