Interface StateMachineTraceRepository
- All Known Implementing Classes:
InMemoryStateMachineTraceRepository
public interface StateMachineTraceRepository
A repository for
StateMachineTrace
s.-
Method Summary
Modifier and TypeMethodDescriptionvoid
Add a newStateMachineTrace
object at the current time.findAll()
Find allStateMachineTrace
objects contained in the repository.
-
Method Details
-
findAll
List<StateMachineTrace> findAll()Find allStateMachineTrace
objects contained in the repository.- Returns:
- the results
-
add
Add a newStateMachineTrace
object at the current time.- Parameters:
traceInfo
- trace information
-