Initial code/design for an Akka Raft implementation
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / example / ExampleActor.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.example;
10
11 import org.opendaylight.controller.cluster.raft.RaftActor;
12
13 /**
14  * A sample actor showing how the RaftActor is to be extended
15  */
16 public class ExampleActor extends RaftActor {
17     public ExampleActor(String id) {
18         super(id);
19     }
20
21     @Override public void onReceiveCommand(Object message){
22         /*
23             Here the extended class does whatever it needs to do.
24             If it cannot handle a message then it passes it on to the super
25             class for handling
26          */
27         super.onReceiveCommand(message);
28     }
29
30     @Override public void onReceiveRecover(Object message) {
31         super.onReceiveRecover(message);
32     }
33
34 }