io.vertx.grpc.contextstorage.ContextStorageService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vertx-grpcio-context-storage Show documentation
Show all versions of vertx-grpcio-context-storage Show documentation
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