use of org.openkilda.wfm.topology.ping.model.Group in project open-kilda by telstra.
the class GroupCollector method collect.
private void collect(Tuple input) throws Exception {
CollectorDescriptor descriptor = saveCurrentRecord(input);
if (descriptor.isCompleted()) {
try {
Group group = descriptor.makeGroup();
emitGroup(input, group);
} catch (IllegalStateException e) {
throw new WorkflowException(this, input, e.toString());
}
}
}
Aggregations