BUG-5280: separate request sequence and transmit sequence
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / commands / CreateLocalHistoryRequestProxyV1.java
index 234e477ee18f79ebb2f4762ecc7fddc5005d8071..8a17e909f11b38b31f8ef051a5dae3a6525e5505 100644 (file)
@@ -28,7 +28,8 @@ final class CreateLocalHistoryRequestProxyV1 extends AbstractLocalHistoryRequest
     }
 
     @Override
-    protected CreateLocalHistoryRequest createRequest(final LocalHistoryIdentifier target, final ActorRef replyTo) {
-        return new CreateLocalHistoryRequest(target, replyTo);
+    protected CreateLocalHistoryRequest createRequest(final LocalHistoryIdentifier target, final long sequence,
+            final ActorRef replyTo) {
+        return new CreateLocalHistoryRequest(target, sequence, replyTo);
     }
 }