Search in sources :

Example 1 with SpeakerBcast

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);
}
Also used : SpeakerBcast(org.openkilda.wfm.topology.network.storm.bolt.speaker.bcast.SpeakerBcast)

Example 2 with SpeakerBcast

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);
    }
}
Also used : PipelineException(org.openkilda.wfm.error.PipelineException) SpeakerBcast(org.openkilda.wfm.topology.network.storm.bolt.speaker.bcast.SpeakerBcast)

Aggregations

SpeakerBcast (org.openkilda.wfm.topology.network.storm.bolt.speaker.bcast.SpeakerBcast)2 PipelineException (org.openkilda.wfm.error.PipelineException)1