use of org.openkilda.floodlight.command.InputDispatchCommand in project open-kilda by telstra.
the class InputService method handle.
private void handle(OfInput input) {
final CommandContext commandContext = commandContextFactory.produce();
List<IInputTranslator> queue = translators.get(input.getType());
commandProcessor.processLazy(new InputDispatchCommand(commandContext, commandProcessor, queue, input));
}
Aggregations