Skip to content
Snippets Groups Projects
Commit 7dfb7dd1 authored by Nelson Tavares de Sousa's avatar Nelson Tavares de Sousa
Browse files

javadoc fixes

parent 73295e6c
No related branches found
No related tags found
No related merge requests found
...@@ -19,10 +19,10 @@ import teetime.framework.AbstractProducerStage; ...@@ -19,10 +19,10 @@ import teetime.framework.AbstractProducerStage;
import teetime.framework.TerminationStrategy; import teetime.framework.TerminationStrategy;
/** /**
* This stage sends an element repeatedly with a given interval {@link #intervalDelayInMs}. * This stage sends the current timestamp repeatedly with a given interval delay of {@link #intervalDelayInMs}.
* *
* @stage.sketch * @stage.sketch
* *
* <pre> * <pre>
* +------------------------+ * +------------------------+
* | | * | |
...@@ -35,7 +35,7 @@ import teetime.framework.TerminationStrategy; ...@@ -35,7 +35,7 @@ import teetime.framework.TerminationStrategy;
* *
* @author Nelson Tavares de Sousa * @author Nelson Tavares de Sousa
* *
* @stage.output A long with the current system time in ms. * @stage.output Current timestamp as long.
* *
*/ */
public final class Clock extends AbstractProducerStage<Long> { public final class Clock extends AbstractProducerStage<Long> {
...@@ -47,7 +47,7 @@ public final class Clock extends AbstractProducerStage<Long> { ...@@ -47,7 +47,7 @@ public final class Clock extends AbstractProducerStage<Long> {
*/ */
private long initialDelayInMs; private long initialDelayInMs;
/** /**
* Interval between two sent elements. * Interval between two sent elements in ms.
*/ */
private long intervalDelayInMs; private long intervalDelayInMs;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment