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

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

Best Java code snippets using rocks.inspectit.shared.cs.indexing.query.provider.impl.IndexQueryProvider (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.implIndexQueryProvider

Javadoc

Class that is used for providing the correct instance of IIndexQuery via Spring framework.

Most used methods

  • createNewIndexQuery

Popular in Java

  • Making http post requests using okhttp
  • getApplicationContext (Context)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getSharedPreferences (Context)
  • SocketException (java.net)
    This SocketException may be thrown during socket creation or setting options, and is the superclass
  • Timestamp (java.sql)
    A Java representation of the SQL TIMESTAMP type. It provides the capability of representing the SQL
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • TreeMap (java.util)
    Walk the nodes of the tree left-to-right or right-to-left. Note that in descending iterations, next
  • Top Sublime Text 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