fully generify OpSequence

This commit is contained in:
Jonathan Shook
2021-07-06 11:11:36 -05:00
parent 68c0ba277b
commit ed91ec7d41
18 changed files with 24 additions and 22 deletions

View File

@@ -27,7 +27,7 @@ public class KafkaAction implements SyncAction {
@Override
public int runCycle(long cycle) {
sequencer.get(cycle).write(cycle);
sequencer.apply(cycle).write(cycle);
return 1;
}