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
624bb082
Commit
624bb082
authored
10 years ago
by
Nelson Tavares de Sousa
Browse files
Options
Downloads
Patches
Plain Diff
removed dependency on OldAnalysis in MethodCallThroughputAnalysis1
parent
98a2c651
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/performancetest/java/teetime/examples/experiment01/MethodCallThroughputAnalysis1.java
+1
-6
1 addition, 6 deletions
.../examples/experiment01/MethodCallThroughputAnalysis1.java
with
1 addition
and
6 deletions
src/performancetest/java/teetime/examples/experiment01/MethodCallThroughputAnalysis1.java
+
1
−
6
View file @
624bb082
...
@@ -17,7 +17,6 @@ package teetime.examples.experiment01;
...
@@ -17,7 +17,6 @@ package teetime.examples.experiment01;
import
java.util.List
;
import
java.util.List
;
import
teetime.framework.OldAnalysis
;
import
teetime.util.ConstructorClosure
;
import
teetime.util.ConstructorClosure
;
import
teetime.util.TimestampObject
;
import
teetime.util.TimestampObject
;
...
@@ -26,7 +25,7 @@ import teetime.util.TimestampObject;
...
@@ -26,7 +25,7 @@ import teetime.util.TimestampObject;
*
*
* @since 1.10
* @since 1.10
*/
*/
public
class
MethodCallThroughputAnalysis1
extends
OldAnalysis
{
public
class
MethodCallThroughputAnalysis1
{
private
long
numInputObjects
;
private
long
numInputObjects
;
private
ConstructorClosure
<
TimestampObject
>
inputObjectCreator
;
private
ConstructorClosure
<
TimestampObject
>
inputObjectCreator
;
...
@@ -34,9 +33,7 @@ public class MethodCallThroughputAnalysis1 extends OldAnalysis {
...
@@ -34,9 +33,7 @@ public class MethodCallThroughputAnalysis1 extends OldAnalysis {
private
List
<
TimestampObject
>
timestampObjects
;
private
List
<
TimestampObject
>
timestampObjects
;
private
Runnable
runnable
;
private
Runnable
runnable
;
@Override
public
void
init
()
{
public
void
init
()
{
super
.
init
();
this
.
runnable
=
this
.
buildPipeline
();
this
.
runnable
=
this
.
buildPipeline
();
}
}
...
@@ -77,9 +74,7 @@ public class MethodCallThroughputAnalysis1 extends OldAnalysis {
...
@@ -77,9 +74,7 @@ public class MethodCallThroughputAnalysis1 extends OldAnalysis {
return
runnable
;
return
runnable
;
}
}
@Override
public
void
start
()
{
public
void
start
()
{
super
.
start
();
this
.
runnable
.
run
();
this
.
runnable
.
run
();
}
}
...
...
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