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

org.qbicc.interpreter.VmThread Maven / Gradle / Ivy

There is a newer version: 0.77.0
Show newest version
package org.qbicc.interpreter;

/**
 * A thread in the inner VM.
 * 

* Any unclosed thread can be invoked upon as frequently as desired, as long as it is * attached to the current calling thread. Unattached threads cannot be invoked upon. */ public interface VmThread extends VmObject { Vm getVM(); boolean isRunning(); boolean isFinished(); // todo: maybe "join" instead; what about interruption? what about same-thread? void await(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy