Make Shutdown message a proper singleton
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / client / messages / Shutdown.java
1 /*
2  * Copyright (c) 2015 Brocade Communications 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.raft.client.messages;
9
10 import java.io.Serializable;
11
12 /**
13  * Message sent to a raft actor to shutdown gracefully. If it's the leader it will transfer leadership to a
14  * follower. As its last act, the actor self-destructs via a PoisonPill.
15  *
16  * @author Thomas Pantelis
17  */
18 public final class Shutdown implements Serializable {
19     private static final long serialVersionUID = 1L;
20     public static final Shutdown INSTANCE = new Shutdown();
21
22     private Shutdown() {
23         // Hidden on purpose
24     }
25
26     @SuppressWarnings({ "static-method", "unused" })
27     private Shutdown readResolve() {
28         return INSTANCE;
29     }
30 }