Skip to content
This repository was archived by the owner on Jul 12, 2023. It is now read-only.

Introduce Queued State #10

Merged
merged 7 commits into from
Dec 7, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
<module name="LeftCurly">
<property name="maxLineLength" value="100"/>
</module>
<module name="RightCurly"/>
<!--<module name="RightCurly"/>-->
<module name="RightCurly">
<property name="option" value="alone"/>
<property name="tokens" value="CLASS_DEF, METHOD_DEF, CTOR_DEF, LITERAL_FOR, LITERAL_WHILE, LITERAL_DO, STATIC_INIT, INSTANCE_INIT"/>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
<dependency>
<groupId>com.google.auto.value</groupId>
<artifactId>auto-value</artifactId>
<version>1.1</version>
<version>1.3</version>
</dependency>
<dependency>
<groupId>com.github.sviperll</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ private ActiveStatesPayload.ActiveState runStateToActiveState(RunState state) {
return ActiveStatesPayload.ActiveState.create(
state.workflowInstance(),
state.state().toString(),
state.executionId().orElse("<no execution id>"),
state.data().executionId().orElse("<no execution id>"),
getPreviousExecutionLastEvent(state)
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ private void closeTrigger() {
executionList = new ArrayList<>();
}

private final EventVisitor visitor = new MyVisitor();
private final EventVisitor visitor = new Reducer();

private class MyVisitor implements EventVisitor<Void> {
private class Reducer implements EventVisitor<Void> {

@Override
public Void timeTrigger(WorkflowInstance workflowInstance) {
Expand Down
Loading