working on conditional actions

This commit is contained in:
Stephan Richter
2020-10-29 13:41:12 +01:00
parent daae49296f
commit 5379bd9da7
15 changed files with 295 additions and 44 deletions

View File

@@ -9,7 +9,8 @@ public class FinishRoute extends RouteAction {
}
@Override
public void fire(Context context) throws IOException {
public boolean fire(Context context) throws IOException {
context.route.finish();
return true;
}
}