Fix intermittent testOwnerChangesOnPeerAvailabilityChanges failure
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / ReplicatedLogEntry.java
1 /*
2  * Copyright (c) 2014 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
9 package org.opendaylight.controller.cluster.raft;
10
11 import org.opendaylight.controller.cluster.raft.protobuff.client.messages.Payload;
12
13 /**
14  * Represents one entry in the replicated log.
15  */
16 public interface ReplicatedLogEntry {
17     /**
18      * Returns the payload/data to be replicated.
19      *
20      * @return the payload/data
21      */
22     Payload getData();
23
24     /**
25      * Returns the term of the entry.
26      *
27      * @return the term
28      */
29     long getTerm();
30
31     /**
32      * Returns the index of the entry.
33      *
34      * @return the index
35      */
36     long getIndex();
37
38     /**
39      * Returns the size of the entry in bytes. An approximate number may be good enough.
40      *
41      * @return the size of the entry in bytes.
42      */
43     int size();
44
45     /**
46      * Checks if persistence is pending for this entry.
47      *
48      * @return true if persistence is pending, false otherwise.
49      */
50     boolean isPersistencePending();
51
52     /**
53      * Sets whether or not persistence is pending for this entry.
54      *
55      * @param pending the new setting.
56      */
57     void setPersistencePending(boolean pending);
58 }