Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
Kieker-TeeTime-Stages
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeeTime
Kieker-TeeTime-Stages
Commits
eff8623e
Commit
eff8623e
authored
9 years ago
by
Sören Henning
Browse files
Options
Downloads
Patches
Plain Diff
Add constructor for simple aggregated operation calls
parent
ad06dae8
No related branches found
No related tags found
1 merge request
!17
Get impletemented stages and Java 8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/kieker/analysis/traceanalysisdomain/AggregatedOperationCall.java
+15
-4
15 additions, 4 deletions
...analysis/traceanalysisdomain/AggregatedOperationCall.java
with
15 additions
and
4 deletions
src/main/java/kieker/analysis/traceanalysisdomain/AggregatedOperationCall.java
+
15
−
4
View file @
eff8623e
...
...
@@ -43,10 +43,21 @@ public final class AggregatedOperationCall extends AbstractOperationCall<Aggrega
this
.
setStackSize
(
call
.
getStackSize
());
}
public
AggregatedOperationCall
(
final
String
container
,
final
String
component
,
final
String
operation
,
final
int
orderIndex
,
// NOPMD (a long parameter list
// cannot be avoided)
final
String
failedCause
,
final
long
totalDuration
,
final
long
medianDuration
,
final
long
minDuration
,
final
long
maxDuration
,
final
long
meanDuration
,
final
int
calls
)
{
public
AggregatedOperationCall
(
final
String
container
,
final
String
component
,
final
String
operation
,
final
int
orderIndex
)
{
super
(
container
,
component
,
operation
,
orderIndex
);
}
public
AggregatedOperationCall
(
final
String
container
,
final
String
component
,
final
String
operation
,
final
int
orderIndex
,
final
String
failedCause
)
{
super
(
container
,
component
,
operation
,
orderIndex
);
this
.
setFailedCause
(
failedCause
);
}
public
AggregatedOperationCall
(
final
String
container
,
final
String
component
,
final
String
operation
,
// NOPMD (a long parameter list cannot be avoided)
final
int
orderIndex
,
final
String
failedCause
,
final
long
totalDuration
,
final
long
medianDuration
,
final
long
minDuration
,
final
long
maxDuration
,
final
long
meanDuration
,
final
int
calls
)
{
super
(
container
,
component
,
operation
,
orderIndex
);
this
.
totalDuration
=
totalDuration
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment