16 package org.openkilda.floodlight.service.batch;
18 import org.projectfloodlight.openflow.protocol.OFMessage;
19 import org.projectfloodlight.openflow.types.DatapathId;
22 private final DatapathId dpId;
23 private final OFMessage request;
25 private OFMessage response = null;
26 private boolean pending =
true;
30 this.request = request;
31 this.xid = request.getXid();
56 this.response = response;
void setResponse(OFMessage response)
OfPendingMessage(DatapathId dpId, OFMessage request)