Examples of SfThread


Examples of net.sf.jiga.xtended.kernel.SfThread

    /** This adds a Thread to active operations n progress.
     * @param t Thread to add
     * @return the id of the added Thread*/
    public int addActiveThread(Thread t) {
        SfThread sft = new SfThread(t);
        activeThreads.put(sft.hashCode(), sft);
        return sft.hashCode();
    }
View Full Code Here

Examples of net.sf.jiga.xtended.kernel.SfThread

    /** remove an active Thread from the map
     * @param t the active Thread to remove
     * @return the removed active Thread */
    public SfThread removeActiveThread(Thread t) {
        SfThread sft = new SfThread(t);
        return activeThreads.remove(sft.hashCode());
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.