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

io.vertx.grpc.contextstorage.GrpcStorage 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.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