Tabnine Logo
DirectoryScannerStage.isKiekerDirectory
Code IndexAdd Tabnine to your IDE (free)

How to use
isKiekerDirectory
method
in
kieker.analysisteetime.plugin.reader.filesystem.DirectoryScannerStage

Best Java code snippets using kieker.analysisteetime.plugin.reader.filesystem.DirectoryScannerStage.isKiekerDirectory (Showing top 1 results out of 315)

origin: kieker-monitoring/kieker

private void scanDirectory(final File directory) {
  if (this.isKiekerDirectory(directory)) {
    this.logger.debug("Reading log data from {}", directory.getAbsolutePath());
    this.numOfDirectories++;
    this.getOutputPort().send(directory);
  } else {
    for (final File subDirectory : directory.listFiles()) { // NOFB is guaranteed to be a directory
      if (subDirectory.isDirectory()) {
        this.scanDirectory(subDirectory);
      }
    }
  }
}
kieker.analysisteetime.plugin.reader.filesystemDirectoryScannerStageisKiekerDirectory

Popular methods of DirectoryScannerStage

  • <init>
    Create a directory scanner.
  • getOutputPort
  • scanDirectory
  • workCompleted

Popular in Java

  • Making http requests using okhttp
  • getApplicationContext (Context)
  • notifyDataSetChanged (ArrayAdapter)
  • compareTo (BigDecimal)
  • URL (java.net)
    A Uniform Resource Locator that identifies the location of an Internet resource as specified by RFC
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • Table (org.hibernate.mapping)
    A relational table
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • Best plugins for Eclipse
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