Tabnine Logo
SchemaMeta.ensureFindOperation
Code IndexAdd Tabnine to your IDE (free)

How to use
ensureFindOperation
method
in
io.servicecomb.core.definition.SchemaMeta

Best Java code snippets using io.servicecomb.core.definition.SchemaMeta.ensureFindOperation (Showing top 2 results out of 315)

origin: io.servicecomb/java-chassis-core

/**
 * consumer端使用,schemaMeta级别的缓存,每次调用根据operationName来执行
 */
public static Invocation forConsumer(ReferenceConfig referenceConfig, SchemaMeta schemaMeta, String operationName,
  Object[] swaggerArguments) {
 OperationMeta operationMeta = schemaMeta.ensureFindOperation(operationName);
 return forConsumer(referenceConfig, operationMeta, swaggerArguments);
}
origin: io.servicecomb/transport-grpc

private void doInit(RoutingContext routingContext) throws Exception {
  String schemaId = routingContext.pathParam("schema");
  String operationName = routingContext.pathParam("operation");
  MicroserviceMeta microserviceMeta =
    microserviceMetaManager.ensureFindValue(routingContext.request().getHeader(Const.DEST_MICROSERVICE));
  SchemaMeta schemaMeta = microserviceMeta.ensureFindSchemaMeta(schemaId);
  this.routingContext = routingContext;
  this.operationMeta = schemaMeta.ensureFindOperation(operationName);
  this.operationProtobuf = ProtobufManager.getOrCreateOperation(operationMeta);
}
io.servicecomb.core.definitionSchemaMetaensureFindOperation

Popular methods of SchemaMeta

  • getMicroserviceMeta
  • getMicroserviceName
  • getOperations
  • getSchemaId
  • getSwagger
  • getSwaggerIntf
  • <init>
  • createOperationMgr
  • getConsumerHandlerChain
  • getMicroserviceQualifiedName
  • getName
  • getPackageName
  • getName,
  • getPackageName,
  • getProviderHandlerChain,
  • initOperations,
  • setConsumerHandlerChain,
  • setProviderHandlerChain

Popular in Java

  • Creating JSON documents from java classes using gson
  • scheduleAtFixedRate (Timer)
  • getContentResolver (Context)
  • runOnUiThread (Activity)
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • Properties (java.util)
    A Properties object is a Hashtable where the keys and values must be Strings. Each property can have
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
  • Top 12 Jupyter Notebook extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now