use of org.openkilda.messaging.payload.switches.PortPropertiesPayload in project open-kilda by telstra.
the class PortHandler method notifyPortPropertiesChanged.
@Override
public void notifyPortPropertiesChanged(PortProperties portProperties) {
PortPropertiesPayload payload = PortMapper.INSTANCE.map(portProperties);
emit(STREAM_NORTHBOUND_ID, getCurrentTuple(), makePortPropertiesTuple(payload));
}
Aggregations