Codota Logo
TimestampFilter.inputOperationExecutionRecord
Code IndexAdd Codota to your IDE (free)

How to use
inputOperationExecutionRecord
method
in
kieker.analysis.plugin.filter.select.TimestampFilter

Best Java code snippets using kieker.analysis.plugin.filter.select.TimestampFilter.inputOperationExecutionRecord (Showing top 2 results out of 315)

  • Common ways to obtain TimestampFilter
private void myMethod () {
TimestampFilter t =
  • Codota IconConfiguration configuration;IProjectContext projectContext;new TimestampFilter(configuration, projectContext)
  • Smart code suggestions by Codota
}
origin: kieker-monitoring/kieker

@InputPort(name = INPUT_PORT_NAME_COMBINED, description = "Receives records to be selected by timestamps, based on type-specific selectors", eventTypes = {
  IMonitoringRecord.class })
public void inputCombined(final IMonitoringRecord record) {
  if (record instanceof OperationExecutionRecord) {
    this.inputOperationExecutionRecord((OperationExecutionRecord) record);
  } else if (record instanceof IEventRecord) {
    this.inputTraceEvent((IEventRecord) record);
  } else {
    this.inputIMonitoringRecord(record);
  }
}
origin: net.kieker-monitoring/kieker

@InputPort(name = INPUT_PORT_NAME_COMBINED, description = "Receives records to be selected by timestamps, based on type-specific selectors",
    eventTypes = { IMonitoringRecord.class })
public void inputCombined(final IMonitoringRecord record) {
  if (record instanceof OperationExecutionRecord) {
    this.inputOperationExecutionRecord((OperationExecutionRecord) record);
  } else if (record instanceof IEventRecord) {
    this.inputTraceEvent((IEventRecord) record);
  } else {
    this.inputIMonitoringRecord(record);
  }
}
kieker.analysis.plugin.filter.selectTimestampFilterinputOperationExecutionRecord

Javadoc

This method represents the input port receiving trace events to be selected by a specific timestamp selector (based on tin and tout).

Popular methods of TimestampFilter

  • <init>
    Creates a new instance of this class using the given parameters.
  • inRange
    A simple helper method which checks whether the given timestamp is in the configured limits.
  • inputIMonitoringRecord
  • inputTraceEvent
    This method represents the input port receiving trace events to be selected by a specific timestamp

Popular in Java

  • Parsing JSON documents to java classes using gson
  • onRequestPermissionsResult (Fragment)
  • startActivity (Activity)
  • setContentView (Activity)
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate(i
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • HashSet (java.util)
    This class implements the Set interface, backed by a hash table (actually a HashMap instance). It m
  • Stack (java.util)
    The Stack class represents a last-in-first-out (LIFO) stack of objects. It extends class Vector with
  • FileUtils (org.apache.commons.io)
    General file manipulation utilities. Facilities are provided in the following areas: * writing to a
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now