X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fcds-access-client%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Faccess%2Fclient%2FInternalCommand.java;h=c841f1350a0505c16ce180c05d7031dee09bd674;hp=f34a4751687cbac927b4ddf6e575426297088037;hb=8a8866d4484fb282702550e299c9c0ec2beadf78;hpb=5a04e042052a3c13fa4677f236a7107a801c7421 diff --git a/opendaylight/md-sal/cds-access-client/src/main/java/org/opendaylight/controller/cluster/access/client/InternalCommand.java b/opendaylight/md-sal/cds-access-client/src/main/java/org/opendaylight/controller/cluster/access/client/InternalCommand.java index f34a475168..c841f1350a 100644 --- a/opendaylight/md-sal/cds-access-client/src/main/java/org/opendaylight/controller/cluster/access/client/InternalCommand.java +++ b/opendaylight/md-sal/cds-access-client/src/main/java/org/opendaylight/controller/cluster/access/client/InternalCommand.java @@ -7,17 +7,18 @@ */ package org.opendaylight.controller.cluster.access.client; +import akka.dispatch.ControlMessage; import javax.annotation.Nonnull; import javax.annotation.Nullable; /** * This interface is used to pass the unit of work via the actors mailbox. The command can alter behavior of the actor - * by returning a new behavior. + * by returning a new behavior. This work will be prioritized before other messages. * * @author Robert Varga */ @FunctionalInterface -public interface InternalCommand { +public interface InternalCommand extends ControlMessage { /** * Run command actions. *