Uses of Interface
org.anchoranalysis.core.functional.checked.CheckedRunnable
Packages that use CheckedRunnable
Package
Description
Utilities and interfaces for applying functional-programming.
Recording the execution-time of operations for profiling.
Writing a sequence of elements using a generator.
A mocked feature internally using a feature-calculation.
-
Uses of CheckedRunnable in org.anchoranalysis.core.functional
Methods in org.anchoranalysis.core.functional with parameters of type CheckedRunnableModifier and TypeMethodDescriptionstatic <E extends Exception>
voidFunctionalIterate.repeat
(int numberTimes, CheckedRunnable<E> operation) Repeats an operation a number of times. -
Uses of CheckedRunnable in org.anchoranalysis.core.time
Methods in org.anchoranalysis.core.time with parameters of type CheckedRunnableModifier and TypeMethodDescription<E extends Exception>
voidExecutionTimeRecorder.recordExecutionTime
(String operationIdentifier, CheckedRunnable<E> operation) Executes anoperation
while recording the execution-time - without a return type. -
Uses of CheckedRunnable in org.anchoranalysis.io.generator.sequence
Methods in org.anchoranalysis.io.generator.sequence that return CheckedRunnableModifier and TypeMethodDescriptionOutputSequenceIncrementing.addAsynchronously
(T element) LikeOutputSequenceIncrementing.add(Object)
but does not immediately execute the underlying add operation, instead returning an operation that can be called later. -
Uses of CheckedRunnable in org.anchoranalysis.test.feature.plugins.mockfeature
Methods in org.anchoranalysis.test.feature.plugins.mockfeature with parameters of type CheckedRunnableModifier and TypeMethodDescriptionstatic void
MockFeatureWithCalculationFixture.executeAndAssertCount
(int expectedCountCalc, int expectedCountExecute, CheckedRunnable<OperationFailedException> operation) Executes an operation and asserts the expected number of calls to internal methods.