kilim.PauseReason Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kilim Show documentation
Show all versions of kilim Show documentation
Coroutines, continuations, fibers, actors and message passing for the JVM
/* Copyright (c) 2006, Sriram Srinivasan
*
* You may distribute this software under the terms of the license
* specified in the file "License"
*/
package kilim;
/**
* @see Task#pause(PauseReason)
*/
public interface PauseReason {
/**
* True if the given task's reason for pausing is still valid.
*/
boolean isValid(Task t);
}