Tabnine Logo
IndexQueryProvider.createNewIndexQuery
Code IndexAdd Tabnine to your IDE (free)

How to use
createNewIndexQuery
method
in
rocks.inspectit.shared.cs.indexing.query.provider.impl.IndexQueryProvider

Best Java code snippets using rocks.inspectit.shared.cs.indexing.query.provider.impl.IndexQueryProvider.createNewIndexQuery (Showing top 4 results out of 315)

origin: inspectIT/inspectIT

  /**
   * {@inheritDoc}
   */
  @Override
  public IndexQuery getIndexQuery() {
    return createNewIndexQuery();
  }
}
origin: inspectIT/inspectIT

IIndexQuery query = indexQueryProvider.createNewIndexQuery();
query.setPlatformIdent(platformId);
if (null != fromDate) {
origin: inspectIT/inspectIT

/**
 * {@inheritDoc}
 */
@Override
public List<DefaultData> getDataForTraceIdList(Collection<Long> traceIds) {
  IIndexQuery query = indexQueryProvider.createNewIndexQuery();
  List<Class<?>> objectClasses = Arrays.asList(new Class<?>[] { InvocationSequenceData.class, ClientSpan.class, ServerSpan.class });
  query.setObjectClasses(objectClasses);
  query.addIndexingRestriction(IndexQueryRestrictionFactory.isInCollection("spanIdent.traceId", traceIds));
  return indexingTree.query(query);
}
origin: inspectIT/inspectIT

/**
 * {@inheritDoc}
 */
@Override
public List<DefaultData> getDataFromIdList(Collection<Long> elementIds, long platformIdent) {
  IIndexQuery query = indexQueryProvider.createNewIndexQuery();
  query.addIndexingRestriction(IndexQueryRestrictionFactory.isInCollection("id", elementIds));
  query.setPlatformIdent(platformIdent);
  return indexingTree.query(query);
}
rocks.inspectit.shared.cs.indexing.query.provider.implIndexQueryProvidercreateNewIndexQuery

Popular methods of IndexQueryProvider

    Popular in Java

    • Updating database using SQL prepared statement
    • setRequestProperty (URLConnection)
    • getOriginalFilename (MultipartFile)
      Return the original filename in the client's filesystem.This may contain path information depending
    • runOnUiThread (Activity)
    • Color (java.awt)
      The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
    • FlowLayout (java.awt)
      A flow layout arranges components in a left-to-right flow, much like lines of text in a paragraph. F
    • Runnable (java.lang)
      Represents a command that can be executed. Often used to run code in a different Thread.
    • MessageDigest (java.security)
      Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
    • Timer (java.util)
      Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
    • DataSource (javax.sql)
      An interface for the creation of Connection objects which represent a connection to a database. This
    • Top PhpStorm plugins
    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