Search in sources :

Example 1 with CacheBoltState

use of org.openkilda.messaging.ctrl.state.CacheBoltState in project open-kilda by telstra.

the class CacheBolt method dumpState.

@Override
public AbstractDumpState dumpState() {
    NetworkDump networkDump = new NetworkDump(networkCache.dumpSwitches(), networkCache.dumpIsls());
    FlowDump flowDump = new FlowDump(flowCache.dumpFlows());
    return new CacheBoltState(networkDump, flowDump);
}
Also used : CacheBoltState(org.openkilda.messaging.ctrl.state.CacheBoltState) NetworkDump(org.openkilda.messaging.ctrl.state.NetworkDump) FlowDump(org.openkilda.messaging.ctrl.state.FlowDump)

Example 2 with CacheBoltState

use of org.openkilda.messaging.ctrl.state.CacheBoltState in project open-kilda by telstra.

the class CacheTopologyTest method getNetworkDump.

private NetworkDump getNetworkDump(ConsumerRecord<String, String> raw) throws IOException {
    Message responseGeneric = objectMapper.readValue(raw.value(), Message.class);
    CtrlResponse response = (CtrlResponse) responseGeneric;
    DumpStateResponseData data = (DumpStateResponseData) response.getData();
    CacheBoltState cacheState = (CacheBoltState) data.getState();
    return cacheState.getNetwork();
}
Also used : CacheBoltState(org.openkilda.messaging.ctrl.state.CacheBoltState) InfoMessage(org.openkilda.messaging.info.InfoMessage) Message(org.openkilda.messaging.Message) CommandMessage(org.openkilda.messaging.command.CommandMessage) DumpStateResponseData(org.openkilda.messaging.ctrl.DumpStateResponseData) CtrlResponse(org.openkilda.messaging.ctrl.CtrlResponse)

Aggregations

CacheBoltState (org.openkilda.messaging.ctrl.state.CacheBoltState)2 Message (org.openkilda.messaging.Message)1 CommandMessage (org.openkilda.messaging.command.CommandMessage)1 CtrlResponse (org.openkilda.messaging.ctrl.CtrlResponse)1 DumpStateResponseData (org.openkilda.messaging.ctrl.DumpStateResponseData)1 FlowDump (org.openkilda.messaging.ctrl.state.FlowDump)1 NetworkDump (org.openkilda.messaging.ctrl.state.NetworkDump)1 InfoMessage (org.openkilda.messaging.info.InfoMessage)1