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

How to use
ExecutionModel
in
kieker.analysisteetime.model.analysismodel.execution

Best Java code snippets using kieker.analysisteetime.model.analysismodel.execution.ExecutionModel (Showing top 4 results out of 315)

origin: kieker-monitoring/kieker

@Override
public IGraph build() {
  for (final AggregatedInvocation invocation : this.executionModel.getAggregatedInvocations().values()) {
    this.handleInvocation(invocation);
  }
  return this.graph;
}
origin: kieker-monitoring/kieker

protected void addExecution(final DeployedOperation source, final DeployedOperation target) {
  final ComposedKey<DeployedOperation, DeployedOperation> key = ComposedKey.of(source, target);
  if (!this.executionModel.getAggregatedInvocations().containsKey(key)) {
    final AggregatedInvocation invocation = this.factory.createAggregatedInvocation();
    invocation.setSource(source);
    invocation.setTarget(target);
    this.executionModel.getAggregatedInvocations().put(key, invocation);
  }
}
origin: kieker-monitoring/kieker

public static final Function<OperationCall, Object> createForAggregatedInvocation(final ExecutionModel executionModel) {
  return operationCall -> {
    // Check if operationCall is an entry operation call. If so than source is null
    final DeployedOperation source = operationCall.getParent() != null ? operationCall.getParent().getOperation() : null; // NOCS (declarative)
    final DeployedOperation target = operationCall.getOperation();
    final ComposedKey<DeployedOperation, DeployedOperation> key = ComposedKey.of(source, target);
    return executionModel.getAggregatedInvocations().get(key);
  };
}
origin: kieker-monitoring/kieker

.getExecutionModel().getAggregatedInvocations();
kieker.analysisteetime.model.analysismodel.executionExecutionModel

Javadoc

A representation of the model object 'Model'.

The following features are supported:

  • kieker.analysisteetime.model.analysismodel.execution.ExecutionModel#getAggregatedInvocations

Most used methods

  • getAggregatedInvocations
    Returns the value of the 'Aggregated Invocations' map. The key is of type kieker.analysisteetime.uti

Popular in Java

  • Updating database using SQL prepared statement
  • scheduleAtFixedRate (Timer)
  • runOnUiThread (Activity)
  • getSupportFragmentManager (FragmentActivity)
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • Format (java.text)
    The base class for all formats. This is an abstract base class which specifies the protocol for clas
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • PriorityQueue (java.util)
    A PriorityQueue holds elements on a priority heap, which orders the elements according to their natu
  • JPanel (javax.swing)
  • StringUtils (org.apache.commons.lang)
    Operations on java.lang.String that arenull safe. * IsEmpty/IsBlank - checks if a String contains
  • From CI to AI: The AI layer in your organization
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