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 / CreateLocalHistoryRequest.java
index 28a77c4426cbdfe31f2a74f42ea620d1f2e095a2..eebcf36c4db0b20295bc28ced551cdc036cd7d8e 100644 (file)
@@ -22,7 +22,11 @@ public final class CreateLocalHistoryRequest extends LocalHistoryRequest<CreateL
     private static final long serialVersionUID = 1L;
 
     public CreateLocalHistoryRequest(final LocalHistoryIdentifier target, final ActorRef replyTo) {
-        super(target, replyTo);
+        this(target, 0, replyTo);
+    }
+
+    CreateLocalHistoryRequest(final LocalHistoryIdentifier target, final long sequence, final ActorRef replyTo) {
+        super(target, sequence, replyTo);
     }
 
     private CreateLocalHistoryRequest(final CreateLocalHistoryRequest request, final ABIVersion version) {