use of org.openkilda.wfm.topology.network.storm.bolt.speaker.bcast.SpeakerBcast in project open-kilda by telstra.
the class BfdHub method handleSpeakerBcast.
private void handleSpeakerBcast(Tuple input) throws PipelineException {
SpeakerBcast command = pullValue(input, SpeakerRouter.FIELD_ID_COMMAND, SpeakerBcast.class);
command.apply(this);
}
use of org.openkilda.wfm.topology.network.storm.bolt.speaker.bcast.SpeakerBcast in project open-kilda by telstra.
the class PortHandler method handleSpeakerBcast.
private void handleSpeakerBcast(Tuple input) {
try {
SpeakerBcast command = pullValue(input, SpeakerRouter.FIELD_ID_COMMAND, SpeakerBcast.class);
command.apply(this);
} catch (PipelineException e) {
log.error("Handle speaker bcast command exception", e);
}
}
Aggregations