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

examples.WebClientSessionExamples Maven / Gradle / Ivy

package examples;

import io.vertx.core.Vertx;
import io.vertx.ext.web.client.WebClient;
import io.vertx.ext.web.client.WebClientSession;

public class WebClientSessionExamples {

  public void create(Vertx vertx) {
    WebClient client = WebClient.create(vertx);
    WebClientSession session = WebClientSession.create(client);
  }
  
  public void setHeaders(WebClient client, String jwtToken) {
    WebClientSession session = WebClientSession.create(client);
    session.addHeader("my-jwt-token", jwtToken);
  }
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy