summaryrefslogtreecommitdiffstats
path: root/src/main/java/derms/Replica.java
blob: a717064bd0ea7bdfab01e126d5ca4fe67c6682d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
package derms;

public interface Replica {
    boolean isAlive();
    void startProcess(int byzantine, int crash);
    void processRequest(Request request);
    void restart();
    int getId();
}