io.vertx.grpc.contextstorage.GrpcStorage 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.grpc.Context;
import io.vertx.core.internal.ContextInternal;
/**
* gRPC context storage.
*/
public class GrpcStorage {
public final io.grpc.Context currentGrpcContext;
public final io.vertx.core.internal.ContextInternal prevVertxContext;
public GrpcStorage(Context currentGrpcContext, ContextInternal prevVertxContext) {
this.currentGrpcContext = currentGrpcContext;
this.prevVertxContext = prevVertxContext;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy