All Downloads are FREE. Search and download functionalities are using the official Maven repository.

examples.ApiCodegenExamples Maven / Gradle / Ivy

There is a newer version: 5.0.0.CR2
Show newest version
package examples;

import io.vertx.core.AsyncResult;
import io.vertx.core.Future;
import io.vertx.core.Handler;
import io.vertx.core.Vertx;
import io.vertx.core.buffer.Buffer;
import io.vertx.core.eventbus.MessageConsumer;
import io.vertx.core.json.JsonObject;
import io.vertx.docgen.Source;
import io.vertx.ext.web.api.OperationResponse;
import io.vertx.ext.web.api.RequestParameters;
import io.vertx.ext.web.api.contract.openapi3.OpenAPI3RouterFactory;
import io.vertx.serviceproxy.ServiceBinder;

/**
 * @author Francesco Guardiani
 */
@Source
public class ApiCodegenExamples {

  public void example1(OpenAPI3RouterFactory routerFactory) {
    routerFactory.addHandlerByOperationId("operationId", routingContext -> {
      RequestParameters parameters = routingContext.get("parsedParameters");
      // Process the request
    });
  }

  public void example2(Handler> resultHandler) {
    resultHandler.handle(
      Future.succeededFuture(
        OperationResponse.completedWithPlainText(Buffer.buffer("Hello world!"))
      )
    );
  }

  public void example3(Vertx vertx){
    TransactionService service = new TransactionServiceImpl();
    final ServiceBinder serviceBinder = new ServiceBinder(vertx).setAddress("address");
    MessageConsumer serviceConsumer = serviceBinder.register(TransactionService.class, service);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy