use of org.openkilda.messaging.info.event.IslBfdPropertiesChangeNotification in project open-kilda by telstra.
the class LinkOperationsBolt method islBfdPropertiesChanged.
@Override
public void islBfdPropertiesChanged(Endpoint source, Endpoint destination) {
IslBfdPropertiesChangeNotification notification = new IslBfdPropertiesChangeNotification(new IslEndpoint(source.getDatapath(), source.getPortNumber()), new IslEndpoint(destination.getDatapath(), destination.getPortNumber()));
getOutput().emit(StreamType.DISCO.toString(), getCurrentTuple(), new Values(notification, getCorrelationId()));
}
Aggregations