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

org.jclarion.clarion.runtime.concurrent.ISyncObject Maven / Gradle / Ivy

The newest version!
package org.jclarion.clarion.runtime.concurrent;

public abstract class ISyncObject {

    public abstract void Wait();
    public abstract void Release();
    public abstract void Kill();
    
    public int handleOf()
    {
        return hashCode();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy