public final class ElementThroughputMeasuringStage<T> extends AbstractFilter<T>
outputPort
inputPort
logger
Constructor and Description |
---|
ElementThroughputMeasuringStage() |
Modifier and Type | Method and Description |
---|---|
protected void |
execute(T element)
Contains the logic of this stage and is invoked (possibly multiple times) by the framework.
|
List<Long> |
getThroughputs() |
InputPort<Long> |
getTriggerInputPort() |
void |
onStarting()
Event that is triggered, if all of the following conditions hold:
after passing the validation phase and
after the threads are ready-to-run and
just before the threads execute any stage.
|
getOutputPort
createInputPort, execute, getInputPort
abort, addInputPortRemovedListener, addOutputPortRemovedListener, compareAndSetBeingExecuted, createInputPort, createInputPort, createInputPort, createOutputPort, createOutputPort, createOutputPort, createOutputPort, declareActive, declarePassive, executeByFramework, getCurrentState, getId, getInputPorts, getOutputPorts, getOwningThread, getTerminationStrategy, isActive, isBeingExecuted, isPaused, isProducer, isStateless, onSignal, onTerminating, onValidating, removeDynamicPort, removeDynamicPort, setPaused, setStateless, shouldBeTerminated, signalAlreadyReceived, terminateStage, toString, workCompleted
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
getInputPort
protected void execute(T element)
AbstractConsumerStage
execute
in class AbstractConsumerStage<T>
element
- the next non-null element from the (only) input port of this stagepublic void onStarting()
AbstractStage
If stage developers want to override this method, they must always call the super implementation first:
@Override protected void onStarting() { super.onStarting(); // insert your code here }
To throw a checked exception, wrap it to an unchecked exception, e.g. to an
IllegalArgumentException.IllegalArgumentException(String, Throwable)
.
Always pass the original exception to the new unchecked exception to allow easy debugging.
onStarting
in class AbstractStage
Copyright © 2015–2020. All rights reserved.