Restart downed nodes.
[controller.git] / opendaylight / md-sal / sal-clustering-commons / src / main / java / org / opendaylight / controller / cluster / common / actor / ExecuteInSelfMessage.java
1 /*
2  * Copyright (c) 2017 Pantheon Technologies, s.r.o. 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.common.actor;
9
10 import static java.util.Objects.requireNonNull;
11
12 import akka.dispatch.ControlMessage;
13 import org.eclipse.jdt.annotation.NonNull;
14
15 /**
16  * Message internal to {@link ExecuteInSelfActor} implementations in this package.
17  *
18  * @author Robert Varga
19  */
20 final class ExecuteInSelfMessage implements ControlMessage {
21     private final Runnable runnable;
22
23     ExecuteInSelfMessage(final @NonNull Runnable runnable) {
24         this.runnable = requireNonNull(runnable);
25     }
26
27     void run() {
28         runnable.run();
29     }
30 }