Improve segmented journal actor metrics
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / commands / CreateLocalHistoryRequest.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.cluster.access.commands;
9
10 import akka.actor.ActorRef;
11 import java.io.ObjectInput;
12 import org.opendaylight.controller.cluster.access.ABIVersion;
13 import org.opendaylight.controller.cluster.access.concepts.LocalHistoryIdentifier;
14
15 /**
16  * Request to create a new local history.
17  */
18 public final class CreateLocalHistoryRequest extends LocalHistoryRequest<CreateLocalHistoryRequest> {
19     interface SerialForm extends LocalHistoryRequest.SerialForm<CreateLocalHistoryRequest> {
20         @Override
21         default CreateLocalHistoryRequest readExternal(final ObjectInput in, final LocalHistoryIdentifier target,
22                 final long sequence, final ActorRef replyTo) {
23             return new CreateLocalHistoryRequest(target, sequence, replyTo);
24         }
25     }
26
27     @java.io.Serial
28     private static final long serialVersionUID = 1L;
29
30     public CreateLocalHistoryRequest(final LocalHistoryIdentifier target, final ActorRef replyTo) {
31         this(target, 0, replyTo);
32     }
33
34     CreateLocalHistoryRequest(final LocalHistoryIdentifier target, final long sequence, final ActorRef replyTo) {
35         super(target, sequence, replyTo);
36     }
37
38     private CreateLocalHistoryRequest(final CreateLocalHistoryRequest request, final ABIVersion version) {
39         super(request, version);
40     }
41
42     @Override
43     protected SerialForm externalizableProxy(final ABIVersion version) {
44         return new CHR(this);
45     }
46
47     @Override
48     protected CreateLocalHistoryRequest cloneAsVersion(final ABIVersion version) {
49         return new CreateLocalHistoryRequest(this, version);
50     }
51 }