All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.unidal.concurrent.ActorState Maven / Gradle / Ivy

The newest version!
package org.unidal.concurrent;

public enum ActorState {
   WAITING,

   RUNNABLE,

   RUNNING;

   public boolean isRunnable() {
      return this == RUNNABLE;
   }

   public boolean isRunning() {
      return this == RUNNING;
   }

   public boolean isWaiting() {
      return this == WAITING;
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy