Uses of Class
kieker.model.system.model.ExecutionContainer
| Package | Description |
|---|---|
| kieker.model.repository |
Copyright 2022 Kieker Project (http://kieker-monitoring.net)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
|
| kieker.model.system.model |
Copyright 2022 Kieker Project (http://kieker-monitoring.net)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
|
| kieker.visualization.trace.dependency.graph |
Copyright 2022 Kieker Project (http://kieker-monitoring.net)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
|
-
Uses of ExecutionContainer in kieker.model.repository
Fields in kieker.model.repository declared as ExecutionContainer Modifier and Type Field Description static ExecutionContainerExecutionEnvironmentRepository. ROOT_EXECUTION_CONTAINERThe root execution container.Methods in kieker.model.repository that return ExecutionContainer Modifier and Type Method Description ExecutionContainerExecutionEnvironmentRepository. createAndRegisterExecutionContainer(java.lang.String namedIdentifier, java.lang.String name)This method creates a new execution container and registers it as well.ExecutionContainerExecutionEnvironmentRepository. lookupExecutionContainerByContainerId(int containerId)Returns the instance for the passed container ID; null if no instance with this ID.ExecutionContainerExecutionEnvironmentRepository. lookupExecutionContainerByNamedIdentifier(java.lang.String namedIdentifier)Methods in kieker.model.repository that return types with arguments of type ExecutionContainer Modifier and Type Method Description java.util.Collection<ExecutionContainer>ExecutionEnvironmentRepository. getExecutionContainers()Delivers all available execution containers.Methods in kieker.model.repository with parameters of type ExecutionContainer Modifier and Type Method Description AllocationComponentAllocationRepository. createAndRegisterAllocationComponentInstance(java.lang.String namedIdentifier, AssemblyComponent assemblyComponentInstance, ExecutionContainer executionContainer) -
Uses of ExecutionContainer in kieker.model.system.model
Subclasses of ExecutionContainer in kieker.model.system.model Modifier and Type Class Description classRootExecutionContainerSpecific subtype for the root execution container.Methods in kieker.model.system.model that return ExecutionContainer Modifier and Type Method Description ExecutionContainerAllocationComponent. getExecutionContainer()ExecutionContainerExecutionContainer. getParent()Delivers the parent of the container.Methods in kieker.model.system.model that return types with arguments of type ExecutionContainer Modifier and Type Method Description java.util.Collection<ExecutionContainer>ExecutionContainer. getChildContainers()Delivers a collection containing the added child containers.Methods in kieker.model.system.model with parameters of type ExecutionContainer Modifier and Type Method Description voidExecutionContainer. addChildContainer(ExecutionContainer container)This method adds a given container to the list of child containers.Constructors in kieker.model.system.model with parameters of type ExecutionContainer Constructor Description AllocationComponent(int id, AssemblyComponent assemblyComponent, ExecutionContainer executionContainer)ExecutionContainer(int id, ExecutionContainer parent, java.lang.String name)Creates a new instance of this class using the given parameters. -
Uses of ExecutionContainer in kieker.visualization.trace.dependency.graph
Methods in kieker.visualization.trace.dependency.graph with parameters of type ExecutionContainer Modifier and Type Method Description protected static java.lang.StringAbstractDependencyGraphFormatter. createContainerId(ExecutionContainer container)Utility function to create a textual container ID for an execution container.Constructors in kieker.visualization.trace.dependency.graph with parameters of type ExecutionContainer Constructor Description ContainerDependencyGraph(ExecutionContainer rootEntity)Creates a new graph with the given root entity.