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

io.vertx.grpc.contextstorage.ContextStorageService Maven / Gradle / Ivy

Go to download

This modules provides an io.grpc.override.ContextStorageOverride implementation which uses Vert.x local context data maps.

The newest version!
package io.vertx.grpc.contextstorage;

import io.vertx.core.internal.VertxBootstrap;
import io.vertx.core.spi.VertxServiceProvider;
import io.vertx.core.spi.context.storage.ContextLocal;

/**
 * Register the local storage.
 */
public class ContextStorageService implements VertxServiceProvider {

  public static final ContextLocal CONTEXT_LOCAL = ContextLocal.registerLocal(GrpcStorage.class);

  @Override
  public void init(VertxBootstrap builder) {
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy